summaryrefslogtreecommitdiff
path: root/test/test.gyp
blob: 9958240d06fbe86a9e4b1d3cf30f744221f48e50 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
  'includes': [
    '../gyp/common.gypi',
  ],
  'targets': [
    { 'target_name': 'test',
      'type': 'executable',
      'include_dirs': [ '../include', '../src' ],
      'dependencies': [
        '../mapboxgl.gyp:mbgl-core',
        '../mapboxgl.gyp:mbgl-<(platform)',
        '../mapboxgl.gyp:mbgl-headless',
        '../deps/gtest/gtest.gyp:gtest'
      ],
      'sources': [
        'fixtures/main.cpp',
        'fixtures/util.cpp',
        'fixtures/fixture_log.cpp',

        'headless/headless.cpp',

        'miscellaneous/clip_ids.cpp',
        'miscellaneous/comparisons.cpp',
        'miscellaneous/enums.cpp',
        'miscellaneous/functions.cpp',
        'miscellaneous/merge_lines.cpp',
        'miscellaneous/rotation_range.cpp',
        'miscellaneous/style_parser.cpp',
        'miscellaneous/text_conversions.cpp',
        'miscellaneous/tile.cpp',
        'miscellaneous/variant.cpp',

        'storage/storage.cpp',
        'storage/cache_response.cpp',
        'storage/cache_revalidate.cpp',
        'storage/directory_reading.cpp',
        'storage/file_reading.cpp',
        'storage/http_cancel.cpp',
        'storage/http_coalescing.cpp',
        'storage/http_error.cpp',
        'storage/http_header_parsing.cpp',
        'storage/http_load.cpp',
        'storage/http_noloop.cpp',
        'storage/http_other_loop.cpp',
        'storage/http_reading.cpp',
      ],
      'libraries': [
        '<@(uv_static_libs)',
        '<@(glfw3_static_libs)',
        '<@(sqlite3_static_libs)',
        '<@(zlib_static_libs)',
      ],
      'variables': {
        'cxxflags': [
          '<@(uv_cflags)',
          '-I<(boost_root)/include',
        ],
        'ldflags': [
          '<@(uv_ldflags)',
          '<@(glfw3_ldflags)',
          '<@(sqlite3_ldflags)',
          '<@(zlib_ldflags)',
        ],
      },
      'xcode_settings': {
        'OTHER_CFLAGS': [ '<@(cxxflags)' ],
        'OTHER_CPLUSPLUSFLAGS': [ '<@(cxxflags)' ],
        'OTHER_LDFLAGS': [ '<@(ldflags)' ],
      },
      'cflags': [ '<@(cxxflags)' ],
      'cxxflags': [ '<@(cxxflags)' ],
      'ldflags': [ '<@(ldflags)' ],
    },
  ]
}