summaryrefslogtreecommitdiff
path: root/test/test.gyp
blob: 98a9d678340517526088c19a04e77fde8d9f24cc (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
76
{
  'includes': [
    '../gyp/common.gypi',
    '../gyp/version.gypi',
    '../gyp/mbgl-platform.gypi',
  ],
  'targets': [
    { 'target_name': 'test_base',
      'type': 'none',
      'direct_dependent_settings': {
        'include_dirs': [ '../include', '../src' ],
      },
      'link_settings': {
        'libraries': [
          '<@(uv_static_libs)',
          '<@(glfw3_static_libs)',
          '<@(sqlite3_static_libs)',
          '<@(zlib_static_libs)',
        ],
        'xcode_settings': {
          'OTHER_LDFLAGS': [
            '<@(uv_ldflags)',
            '<@(glfw3_ldflags)',
            '<@(sqlite3_ldflags)',
            '<@(zlib_ldflags)',
          ],
          'OTHER_CFLAGS': [ '<@(uv_cflags)' ],
          'OTHER_CPLUSPLUSFLAGS': [ '<@(uv_cflags)' ],
        },
        'cflags': [ '<@(uv_cflags)' ],
        'cxxflags': [ '<@(uv_cflags)' ],
      },
    },

    # Build all targets
    { 'target_name': 'test',
      'type': 'executable',
      'dependencies': [
        'test_base',
        '../mapboxgl.gyp:mbgl-core',
        '../mapboxgl.gyp:mbgl-<(platform)',
        '../mapboxgl.gyp:mbgl-headless',
        '../deps/gtest/gtest.gyp:gtest'
      ],
      'sources': [
        'main.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/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',
      ],
    },
  ]
}