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
|
{
'includes': [
'../gyp/common.gypi',
'../gyp/mbgl-platform.gypi',
],
'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',
]
},
{ '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',
]
},
{ 'target_name': 'enums',
'product_name': 'test_enums',
'type': 'executable',
'sources': [
'./main.cpp',
'./enums.cpp',
],
'dependencies': [
'../deps/gtest/gtest.gyp:gtest',
'../mapboxgl.gyp:mbgl',
]
},
{ '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',
'../mapboxgl.gyp:copy_fixtures',
]
},
{ 'target_name': 'variant',
'product_name': 'test_variant',
'type': 'executable',
'sources': [
'./main.cpp',
'./variant.cpp',
],
'dependencies': [
'../deps/gtest/gtest.gyp:gtest',
'../mapboxgl.gyp:mbgl',
]
},
{ 'target_name': 'comparisons',
'product_name': 'test_comparisons',
'type': 'executable',
'sources': [
'./main.cpp',
'./comparisons.cpp',
],
'dependencies': [
'../deps/gtest/gtest.gyp:gtest',
'../mapboxgl.gyp:mbgl',
]
},
{ 'target_name': 'tile',
'product_name': 'test_tile',
'type': 'executable',
'sources': [
'./main.cpp',
'./tile.cpp',
],
'dependencies': [
'../deps/gtest/gtest.gyp:gtest',
'../mapboxgl.gyp:mbgl',
]
},
{ 'target_name': 'functions',
'product_name': 'test_functions',
'type': 'executable',
'sources': [
'./main.cpp',
'./functions.cpp',
],
'dependencies': [
'../deps/gtest/gtest.gyp:gtest',
'../mapboxgl.gyp:mbgl',
]
},
{ 'target_name': 'headless',
'product_name': 'test_headless',
'type': 'executable',
'sources': [
'./main.cpp',
'./headless.cpp',
'./fixtures/fixture_request.cpp',
'./fixtures/fixture_log.cpp',
'../platform/default/headless_view.cpp',
'../platform/default/headless_display.cpp',
],
'conditions': [
# add libuv include path and OpenGL libs
['OS == "mac"',
{
'xcode_settings': {
'OTHER_CPLUSPLUSFLAGS': ['<@(uv_cflags)'],
'OTHER_LDFLAGS': ['<@(glfw3_libraries)'],
},
},
{
'cflags': ['<@(uv_cflags)'],
'libraries': ['<@(glfw3_libraries)'],
}],
],
'dependencies': [
'../deps/gtest/gtest.gyp:gtest',
'../mapboxgl.gyp:mbgl',
'<(platform_library)',
],
},
# Build all targets
{ 'target_name': 'test',
'type': 'none',
'dependencies': [
'rotation_range',
'clip_ids',
'enums',
'variant',
'tile',
'functions',
'headless',
'style_parser',
'comparisons',
],
}
]
}
|