blob: a4106dc8eb30be1c1d3562780d1f03ab69f66ea8 [file] [log] [blame]
Ben Murdoch097c5b22016-05-18 11:27:45 +01001# 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}