summaryrefslogtreecommitdiff
path: root/test/toolsets/toolsets.gyp
blob: c709fb1035c7ce000dfa40475e243cc79aea5743 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
  'target_defaults': {
    'target_conditions': [
      ['_toolset=="target"', {'defines': ['TARGET']}]
    ]
  },
  'targets': [
    {
      'target_name': 'toolsets',
      'type': 'static_library',
      'toolsets': ['target', 'host'],
      'sources': [
        'toolsets.cc',
      ],
    },
    {
      'target_name': 'host-main',
      'type': 'executable',
      'toolsets': ['host'],
      'dependencies': ['toolsets'],
      'sources': [
        'main.cc',
      ],
    },
    {
      'target_name': 'target-main',
      'type': 'executable',
      'dependencies': ['toolsets'],
      'sources': [
        'main.cc',
      ],
    },
  ],
}