summaryrefslogtreecommitdiff
path: root/test/test.gyp
blob: f227dd5f5459a366d93b38ae40202292f1e99545 (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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
{
  'includes': [
    '../gyp/common.gypi',
    '../gyp/mbgl-platform.gypi',
  ],
  'variables' : {
    'ldflags': [
      '<@(uv_ldflags)',
      '<@(sqlite3_ldflags)',
      '<@(curl_ldflags)',
      '<@(png_ldflags)'
    ],
  },
  'targets': [
    { 'target_name': 'rotation_range',
      'product_name': 'test_rotation_range',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './rotation_range.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'clip_ids',
      'product_name': 'test_clip_ids',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './clip_ids.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'enums',
      'product_name': 'test_enums',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './enums.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'style_parser',
      'product_name': 'test_style_parser',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './style_parser.cpp',
        './fixtures/fixture_log.hpp',
        './fixtures/fixture_log.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
        '../mapboxgl.gyp:copy_fixtures',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'variant',
      'product_name': 'test_variant',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './variant.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'comparisons',
      'product_name': 'test_comparisons',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './comparisons.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'tile',
      'product_name': 'test_tile',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './tile.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'functions',
      'product_name': 'test_functions',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './functions.cpp',
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
      ],
      'conditions': [
        ['OS == "mac"', { 'xcode_settings': { 'OTHER_LDFLAGS': [ '<@(ldflags)' ] }
        }, {
          'libraries': [ '<@(ldflags)' ],
        }]
      ]
    },
    { 'target_name': 'headless',
      'product_name': 'test_headless',
      'type': 'executable',
      'sources': [
        './main.cpp',
        './headless.cpp',
        './fixtures/fixture_request.cpp',
        './fixtures/fixture_log.cpp',
      ],
      'conditions': [
        # add libuv include path and OpenGL libs
        ['OS == "mac"',
          {
            'xcode_settings': {
              'OTHER_CPLUSPLUSFLAGS': ['<@(uv_cflags)'],
              'OTHER_LDFLAGS': ['<@(glfw3_ldflags)', '<@(ldflags)'],
            },
          },
          {
            'cflags': ['<@(uv_cflags)'],
            'libraries': ['<@(glfw3_ldflags)', '<@(ldflags)'],
          }],
      ],
      'dependencies': [
        '../deps/gtest/gtest.gyp:gtest',
        '../mapboxgl.gyp:mbgl-standalone',
        '../mapboxgl.gyp:mbgl-headless',
        '<(platform_library)',
      ]
    },

    # Build all targets
    { 'target_name': 'test',
      'type': 'none',
      'dependencies': [
        'rotation_range',
        'clip_ids',
        'enums',
        'variant',
        'tile',
        'functions',
        'headless',
        'style_parser',
        'comparisons',
      ],
    }
  ]
}