summaryrefslogtreecommitdiff
path: root/gyp/standalone.gypi
blob: 732682cdf26c56be6d9640b2ecd2e509eef95ff7 (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
{
  'targets': [
    { 'target_name': 'everything',
      'type': 'none',
      'hard_dependency': 1,

      'dependencies': [
        'core',
        'platform-<(platform_lib)',
        'http-<(http_lib)',
        'asset-<(asset_lib)',
        'headless-<(headless_lib)',
      ],
    },

    { 'target_name': 'standalone',
      'product_name': 'libmbgl.a',
      'type': 'executable',
      'hard_dependency': 1,

      'dependencies': [
        'core',
        'platform-<(platform_lib)',
        'http-<(http_lib)',
        'asset-<(asset_lib)',
        'headless-<(headless_lib)',
      ],
    },
  ],
}