initial import
[vuplus_webkit] / Source / ThirdParty / gyp / test / defines / defines.gyp
1 # Copyright (c) 2009 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': 'defines',
9       'type': 'executable',
10       'sources': [
11         'defines.c',
12       ],
13       'defines': [
14         'FOO',
15         'VALUE=1',
16       ],
17     },
18   ],
19   'conditions': [
20     ['OS=="fakeos"', {
21       'targets': [
22         {
23           'target_name': 'fakeosprogram',
24           'type': 'executable',
25           'sources': [
26             'defines.c',
27           ],
28           'defines': [
29             'FOO',
30             'VALUE=1',
31           ],
32         },
33       ],
34     }],
35   ],
36 }