~hjd/ubuntu/wily/gyp/debian-merged

« back to all changes in this revision

Viewing changes to test/msvs/filters/filters.gyp

  • Committer: Hans Joachim Desserud
  • Date: 2015-10-31 12:46:59 UTC
  • mfrom: (6.2.6 sid)
  • Revision ID: hans_joachim_desserud-20151031124659-lzxekr6woskh4k0b
Merge latest Debian version

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (c) 2014 Google Inc. All rights reserved.
 
2
# Use of this source code is governed by a BSD-style license that can be
 
3
# found in the LICENSE file.
 
4
 
 
5
{
 
6
  'targets': [
 
7
    {
 
8
      'target_name': 'no_source_files',
 
9
      'type': 'none',
 
10
      'sources': [ ],
 
11
    },
 
12
    {
 
13
      'target_name': 'one_source_file',
 
14
      'type': 'executable',
 
15
      'sources': [
 
16
        '../folder/a.c',
 
17
      ],
 
18
    },
 
19
    {
 
20
      'target_name': 'two_source_files',
 
21
      'type': 'executable',
 
22
      'sources': [
 
23
        '../folder/a.c',
 
24
        '../folder/b.c',
 
25
      ],
 
26
    },
 
27
    {
 
28
      'target_name': 'three_files_in_two_folders',
 
29
      'type': 'executable',
 
30
      'sources': [
 
31
        '../folder1/a.c',
 
32
        '../folder1/b.c',
 
33
        '../folder2/c.c',
 
34
      ],
 
35
    },
 
36
    {
 
37
      'target_name': 'nested_folders',
 
38
      'type': 'executable',
 
39
      'sources': [
 
40
        '../folder1/nested/a.c',
 
41
        '../folder2/d.c',
 
42
        '../folder1/nested/b.c',
 
43
        '../folder1/other/c.c',
 
44
      ],
 
45
    },
 
46
  ],
 
47
}