blob: c70833c060406e25a31bc087bc5247f401bb4d67 [file] [log] [blame]
Jamie Madill3cd438d2015-03-17 11:25:27 -04001# Copyright 2015 The ANGLE Project Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5{
6 'variables':
7 {
8 'deqp_dir': 'third_party/deqp',
9 'delibs_dir': 'third_party/deqp/framework/delibs',
10 'libpng_dir': 'third_party/libpng',
11 'zlib_dir': 'third_party/zlib',
12 'deqp_msvs_disabled_warnings':
13 [
14 '4100',
15 '4127', # conditional expression constant
16 '4244', # possible loss of data
17 '4245', # argument signed/unsigned mismatch
18 '4389', # signed/unsigned mismatch
19 '4510', # default constructor could not be generated
20 '4512',
21 '4610', # cannot be instantiated
22 '4611', # setjmp interaction non-portable
23 '4701', # potentially uninit used
24 '4702', # unreachable code
25 '4706',
26 '4996', # deprecated
27 ],
28 'deqp_defines':
29 [
30 'DEQP_SUPPORT_GLES3=1',
31 'DEQP_SUPPORT_GLES2=1',
32 'DEQP_SUPPORT_EGL=1',
33 'DEQP_TARGET_NAME="angle"',
34 'DEQP_GLES3_RUNTIME_LOAD=1',
35 'DEQP_GLES2_RUNTIME_LOAD=1',
36 'QP_SUPPORT_PNG=1',
37 ],
38 'deqp_include_dirs':
39 [
40 'third_party/libpng',
41 'third_party/zlib',
42 '<(delibs_dir)/debase',
43 '<(delibs_dir)/decpp',
44 '<(delibs_dir)/depool',
45 '<(delibs_dir)/dethread',
46 '<(delibs_dir)/deutil',
47 '<(delibs_dir)/destream',
48 '<(deqp_dir)/framework/common',
49 '<(deqp_dir)/framework/qphelper',
50 # TODO(jmadill): other platforms
51 '<(deqp_dir)/framework/platform/win32',
52 '<(deqp_dir)/framework/egl',
53 '<(deqp_dir)/framework/egl/wrapper',
54 '<(deqp_dir)/framework/opengl',
55 '<(deqp_dir)/framework/opengl/wrapper',
56 '<(deqp_dir)/framework/referencerenderer',
57 '<(deqp_dir)/framework/opengl/simplereference',
58 '<(deqp_dir)/framework/randomshaders',
59 '<(deqp_dir)/modules/gles2',
60 '<(deqp_dir)/modules/gles2/functional',
61 '<(deqp_dir)/modules/gles2/accuracy',
62 '<(deqp_dir)/modules/gles2/performance',
63 '<(deqp_dir)/modules/gles2/stress',
64 '<(deqp_dir)/modules/gles2/usecases',
65 '<(deqp_dir)/modules/gles3',
66 '<(deqp_dir)/modules/gles3/functional',
67 '<(deqp_dir)/modules/gles3/accuracy',
68 '<(deqp_dir)/modules/gles3/performance',
69 '<(deqp_dir)/modules/gles3/stress',
70 '<(deqp_dir)/modules/gles3/usecases',
71 '<(deqp_dir)/modules/gles31',
72 '<(deqp_dir)/modules/gles31/functional',
73 '<(deqp_dir)/modules/gles31/stress',
74 '<(deqp_dir)/modules/glshared',
75 '<(deqp_dir)/modules/glusecases',
76 '<(deqp_dir)/executor',
77 '<(deqp_dir)/execserver',
78 ],
79 'deqp_gles2_sources':
80 [
81 '<(deqp_dir)/modules/gles2/accuracy/es2aAccuracyTests.cpp',
82 '<(deqp_dir)/modules/gles2/accuracy/es2aAccuracyTests.hpp',
83 '<(deqp_dir)/modules/gles2/accuracy/es2aTextureFilteringTests.cpp',
84 '<(deqp_dir)/modules/gles2/accuracy/es2aTextureFilteringTests.hpp',
85 '<(deqp_dir)/modules/gles2/accuracy/es2aTextureMipmapTests.cpp',
86 '<(deqp_dir)/modules/gles2/accuracy/es2aTextureMipmapTests.hpp',
87 '<(deqp_dir)/modules/gles2/accuracy/es2aVaryingInterpolationTests.cpp',
88 '<(deqp_dir)/modules/gles2/accuracy/es2aVaryingInterpolationTests.hpp',
89 '<(deqp_dir)/modules/gles2/functional/es2fApiCase.cpp',
90 '<(deqp_dir)/modules/gles2/functional/es2fApiCase.hpp',
91 '<(deqp_dir)/modules/gles2/functional/es2fAttribLocationTests.cpp',
92 '<(deqp_dir)/modules/gles2/functional/es2fAttribLocationTests.hpp',
93 '<(deqp_dir)/modules/gles2/functional/es2fBlendTests.cpp',
94 '<(deqp_dir)/modules/gles2/functional/es2fBlendTests.hpp',
95 '<(deqp_dir)/modules/gles2/functional/es2fBooleanStateQueryTests.cpp',
96 '<(deqp_dir)/modules/gles2/functional/es2fBooleanStateQueryTests.hpp',
97 '<(deqp_dir)/modules/gles2/functional/es2fBufferObjectQueryTests.cpp',
98 '<(deqp_dir)/modules/gles2/functional/es2fBufferObjectQueryTests.hpp',
99 '<(deqp_dir)/modules/gles2/functional/es2fBufferTestUtil.cpp',
100 '<(deqp_dir)/modules/gles2/functional/es2fBufferTestUtil.hpp',
101 '<(deqp_dir)/modules/gles2/functional/es2fBufferWriteTests.cpp',
102 '<(deqp_dir)/modules/gles2/functional/es2fBufferWriteTests.hpp',
103 '<(deqp_dir)/modules/gles2/functional/es2fClippingTests.cpp',
104 '<(deqp_dir)/modules/gles2/functional/es2fClippingTests.hpp',
105 '<(deqp_dir)/modules/gles2/functional/es2fColorClearTest.cpp',
106 '<(deqp_dir)/modules/gles2/functional/es2fColorClearTest.hpp',
107 '<(deqp_dir)/modules/gles2/functional/es2fDefaultVertexAttributeTests.cpp',
108 '<(deqp_dir)/modules/gles2/functional/es2fDefaultVertexAttributeTests.hpp',
109 '<(deqp_dir)/modules/gles2/functional/es2fDepthRangeTests.cpp',
110 '<(deqp_dir)/modules/gles2/functional/es2fDepthRangeTests.hpp',
111 '<(deqp_dir)/modules/gles2/functional/es2fDepthStencilClearTests.cpp',
112 '<(deqp_dir)/modules/gles2/functional/es2fDepthStencilClearTests.hpp',
113 '<(deqp_dir)/modules/gles2/functional/es2fDepthStencilTests.cpp',
114 '<(deqp_dir)/modules/gles2/functional/es2fDepthStencilTests.hpp',
115 '<(deqp_dir)/modules/gles2/functional/es2fDepthTests.cpp',
116 '<(deqp_dir)/modules/gles2/functional/es2fDepthTests.hpp',
117 '<(deqp_dir)/modules/gles2/functional/es2fDitheringTests.cpp',
118 '<(deqp_dir)/modules/gles2/functional/es2fDitheringTests.hpp',
119 '<(deqp_dir)/modules/gles2/functional/es2fDrawTests.cpp',
120 '<(deqp_dir)/modules/gles2/functional/es2fDrawTests.hpp',
121 '<(deqp_dir)/modules/gles2/functional/es2fFboApiTest.cpp',
122 '<(deqp_dir)/modules/gles2/functional/es2fFboApiTest.hpp',
123 '<(deqp_dir)/modules/gles2/functional/es2fFboCompletenessTests.cpp',
124 '<(deqp_dir)/modules/gles2/functional/es2fFboCompletenessTests.hpp',
125 '<(deqp_dir)/modules/gles2/functional/es2fFboRenderTest.cpp',
126 '<(deqp_dir)/modules/gles2/functional/es2fFboRenderTest.hpp',
127 '<(deqp_dir)/modules/gles2/functional/es2fFboStateQueryTests.cpp',
128 '<(deqp_dir)/modules/gles2/functional/es2fFboStateQueryTests.hpp',
129 '<(deqp_dir)/modules/gles2/functional/es2fFloatStateQueryTests.cpp',
130 '<(deqp_dir)/modules/gles2/functional/es2fFloatStateQueryTests.hpp',
131 '<(deqp_dir)/modules/gles2/functional/es2fFlushFinishTests.cpp',
132 '<(deqp_dir)/modules/gles2/functional/es2fFlushFinishTests.hpp',
133 '<(deqp_dir)/modules/gles2/functional/es2fFragOpInteractionTests.cpp',
134 '<(deqp_dir)/modules/gles2/functional/es2fFragOpInteractionTests.hpp',
135 '<(deqp_dir)/modules/gles2/functional/es2fFunctionalTests.cpp',
136 '<(deqp_dir)/modules/gles2/functional/es2fFunctionalTests.hpp',
137 '<(deqp_dir)/modules/gles2/functional/es2fImplementationLimitTests.cpp',
138 '<(deqp_dir)/modules/gles2/functional/es2fImplementationLimitTests.hpp',
139 '<(deqp_dir)/modules/gles2/functional/es2fIntegerStateQueryTests.cpp',
140 '<(deqp_dir)/modules/gles2/functional/es2fIntegerStateQueryTests.hpp',
141 '<(deqp_dir)/modules/gles2/functional/es2fLifetimeTests.cpp',
142 '<(deqp_dir)/modules/gles2/functional/es2fLifetimeTests.hpp',
143 '<(deqp_dir)/modules/gles2/functional/es2fLightAmountTest.cpp',
144 '<(deqp_dir)/modules/gles2/functional/es2fLightAmountTest.hpp',
145 '<(deqp_dir)/modules/gles2/functional/es2fMultisampleTests.cpp',
146 '<(deqp_dir)/modules/gles2/functional/es2fMultisampleTests.hpp',
147 '<(deqp_dir)/modules/gles2/functional/es2fNegativeBufferApiTests.cpp',
148 '<(deqp_dir)/modules/gles2/functional/es2fNegativeBufferApiTests.hpp',
149 '<(deqp_dir)/modules/gles2/functional/es2fNegativeFragmentApiTests.cpp',
150 '<(deqp_dir)/modules/gles2/functional/es2fNegativeFragmentApiTests.hpp',
151 '<(deqp_dir)/modules/gles2/functional/es2fNegativeShaderApiTests.cpp',
152 '<(deqp_dir)/modules/gles2/functional/es2fNegativeShaderApiTests.hpp',
153 '<(deqp_dir)/modules/gles2/functional/es2fNegativeStateApiTests.cpp',
154 '<(deqp_dir)/modules/gles2/functional/es2fNegativeStateApiTests.hpp',
155 '<(deqp_dir)/modules/gles2/functional/es2fNegativeTextureApiTests.cpp',
156 '<(deqp_dir)/modules/gles2/functional/es2fNegativeTextureApiTests.hpp',
157 '<(deqp_dir)/modules/gles2/functional/es2fNegativeVertexArrayApiTests.cpp',
158 '<(deqp_dir)/modules/gles2/functional/es2fNegativeVertexArrayApiTests.hpp',
159 '<(deqp_dir)/modules/gles2/functional/es2fPolygonOffsetTests.cpp',
160 '<(deqp_dir)/modules/gles2/functional/es2fPolygonOffsetTests.hpp',
161 '<(deqp_dir)/modules/gles2/functional/es2fPrerequisiteTests.cpp',
162 '<(deqp_dir)/modules/gles2/functional/es2fPrerequisiteTests.hpp',
163 '<(deqp_dir)/modules/gles2/functional/es2fRandomFragmentOpTests.cpp',
164 '<(deqp_dir)/modules/gles2/functional/es2fRandomFragmentOpTests.hpp',
165 '<(deqp_dir)/modules/gles2/functional/es2fRandomShaderTests.cpp',
166 '<(deqp_dir)/modules/gles2/functional/es2fRandomShaderTests.hpp',
167 '<(deqp_dir)/modules/gles2/functional/es2fRasterizationTests.cpp',
168 '<(deqp_dir)/modules/gles2/functional/es2fRasterizationTests.hpp',
169 '<(deqp_dir)/modules/gles2/functional/es2fRboStateQueryTests.cpp',
170 '<(deqp_dir)/modules/gles2/functional/es2fRboStateQueryTests.hpp',
171 '<(deqp_dir)/modules/gles2/functional/es2fReadPixelsTests.cpp',
172 '<(deqp_dir)/modules/gles2/functional/es2fReadPixelsTests.hpp',
173 '<(deqp_dir)/modules/gles2/functional/es2fScissorTests.cpp',
174 '<(deqp_dir)/modules/gles2/functional/es2fScissorTests.hpp',
175 '<(deqp_dir)/modules/gles2/functional/es2fShaderAlgorithmTests.cpp',
176 '<(deqp_dir)/modules/gles2/functional/es2fShaderAlgorithmTests.hpp',
177 '<(deqp_dir)/modules/gles2/functional/es2fShaderApiTests.cpp',
178 '<(deqp_dir)/modules/gles2/functional/es2fShaderApiTests.hpp',
179 '<(deqp_dir)/modules/gles2/functional/es2fShaderBuiltinVarTests.cpp',
180 '<(deqp_dir)/modules/gles2/functional/es2fShaderBuiltinVarTests.hpp',
181 '<(deqp_dir)/modules/gles2/functional/es2fShaderConstExprTests.cpp',
182 '<(deqp_dir)/modules/gles2/functional/es2fShaderConstExprTests.hpp',
183 '<(deqp_dir)/modules/gles2/functional/es2fShaderDiscardTests.cpp',
184 '<(deqp_dir)/modules/gles2/functional/es2fShaderDiscardTests.hpp',
185 '<(deqp_dir)/modules/gles2/functional/es2fShaderExecuteTest.cpp',
186 '<(deqp_dir)/modules/gles2/functional/es2fShaderExecuteTest.hpp',
187 '<(deqp_dir)/modules/gles2/functional/es2fShaderFragDataTests.cpp',
188 '<(deqp_dir)/modules/gles2/functional/es2fShaderFragDataTests.hpp',
189 '<(deqp_dir)/modules/gles2/functional/es2fShaderIndexingTests.cpp',
190 '<(deqp_dir)/modules/gles2/functional/es2fShaderIndexingTests.hpp',
191 '<(deqp_dir)/modules/gles2/functional/es2fShaderInvarianceTests.cpp',
192 '<(deqp_dir)/modules/gles2/functional/es2fShaderInvarianceTests.hpp',
193 '<(deqp_dir)/modules/gles2/functional/es2fShaderLoopTests.cpp',
194 '<(deqp_dir)/modules/gles2/functional/es2fShaderLoopTests.hpp',
195 '<(deqp_dir)/modules/gles2/functional/es2fShaderMatrixTests.cpp',
196 '<(deqp_dir)/modules/gles2/functional/es2fShaderMatrixTests.hpp',
197 '<(deqp_dir)/modules/gles2/functional/es2fShaderOperatorTests.cpp',
198 '<(deqp_dir)/modules/gles2/functional/es2fShaderOperatorTests.hpp',
199 '<(deqp_dir)/modules/gles2/functional/es2fShaderReturnTests.cpp',
200 '<(deqp_dir)/modules/gles2/functional/es2fShaderReturnTests.hpp',
201 '<(deqp_dir)/modules/gles2/functional/es2fShaderStateQueryTests.cpp',
202 '<(deqp_dir)/modules/gles2/functional/es2fShaderStateQueryTests.hpp',
203 '<(deqp_dir)/modules/gles2/functional/es2fShaderStructTests.cpp',
204 '<(deqp_dir)/modules/gles2/functional/es2fShaderStructTests.hpp',
205 '<(deqp_dir)/modules/gles2/functional/es2fShaderTextureFunctionTests.cpp',
206 '<(deqp_dir)/modules/gles2/functional/es2fShaderTextureFunctionTests.hpp',
207 '<(deqp_dir)/modules/gles2/functional/es2fStencilTests.cpp',
208 '<(deqp_dir)/modules/gles2/functional/es2fStencilTests.hpp',
209 '<(deqp_dir)/modules/gles2/functional/es2fStringQueryTests.cpp',
210 '<(deqp_dir)/modules/gles2/functional/es2fStringQueryTests.hpp',
211 '<(deqp_dir)/modules/gles2/functional/es2fTextureCompletenessTests.cpp',
212 '<(deqp_dir)/modules/gles2/functional/es2fTextureCompletenessTests.hpp',
213 '<(deqp_dir)/modules/gles2/functional/es2fTextureFilteringTests.cpp',
214 '<(deqp_dir)/modules/gles2/functional/es2fTextureFilteringTests.hpp',
215 '<(deqp_dir)/modules/gles2/functional/es2fTextureFormatTests.cpp',
216 '<(deqp_dir)/modules/gles2/functional/es2fTextureFormatTests.hpp',
217 '<(deqp_dir)/modules/gles2/functional/es2fTextureMipmapTests.cpp',
218 '<(deqp_dir)/modules/gles2/functional/es2fTextureMipmapTests.hpp',
219 '<(deqp_dir)/modules/gles2/functional/es2fTextureSizeTests.cpp',
220 '<(deqp_dir)/modules/gles2/functional/es2fTextureSizeTests.hpp',
221 '<(deqp_dir)/modules/gles2/functional/es2fTextureSpecificationTests.cpp',
222 '<(deqp_dir)/modules/gles2/functional/es2fTextureSpecificationTests.hpp',
223 '<(deqp_dir)/modules/gles2/functional/es2fTextureStateQueryTests.cpp',
224 '<(deqp_dir)/modules/gles2/functional/es2fTextureStateQueryTests.hpp',
225 '<(deqp_dir)/modules/gles2/functional/es2fTextureUnitTests.cpp',
226 '<(deqp_dir)/modules/gles2/functional/es2fTextureUnitTests.hpp',
227 '<(deqp_dir)/modules/gles2/functional/es2fTextureWrapTests.cpp',
228 '<(deqp_dir)/modules/gles2/functional/es2fTextureWrapTests.hpp',
229 '<(deqp_dir)/modules/gles2/functional/es2fUniformApiTests.cpp',
230 '<(deqp_dir)/modules/gles2/functional/es2fUniformApiTests.hpp',
231 '<(deqp_dir)/modules/gles2/functional/es2fVertexArrayTest.cpp',
232 '<(deqp_dir)/modules/gles2/functional/es2fVertexArrayTest.hpp',
233 '<(deqp_dir)/modules/gles2/functional/es2fVertexTextureTests.cpp',
234 '<(deqp_dir)/modules/gles2/functional/es2fVertexTextureTests.hpp',
235 '<(deqp_dir)/modules/gles2/performance/es2pBlendTests.cpp',
236 '<(deqp_dir)/modules/gles2/performance/es2pBlendTests.hpp',
237 '<(deqp_dir)/modules/gles2/performance/es2pDrawCallBatchingTests.cpp',
238 '<(deqp_dir)/modules/gles2/performance/es2pDrawCallBatchingTests.hpp',
239 '<(deqp_dir)/modules/gles2/performance/es2pPerformanceTests.cpp',
240 '<(deqp_dir)/modules/gles2/performance/es2pPerformanceTests.hpp',
241 '<(deqp_dir)/modules/gles2/performance/es2pRedundantStateChangeTests.cpp',
242 '<(deqp_dir)/modules/gles2/performance/es2pRedundantStateChangeTests.hpp',
243 '<(deqp_dir)/modules/gles2/performance/es2pShaderCompilationCases.cpp',
244 '<(deqp_dir)/modules/gles2/performance/es2pShaderCompilationCases.hpp',
245 '<(deqp_dir)/modules/gles2/performance/es2pShaderCompilerTests.cpp',
246 '<(deqp_dir)/modules/gles2/performance/es2pShaderCompilerTests.hpp',
247 '<(deqp_dir)/modules/gles2/performance/es2pShaderControlStatementTests.cpp',
248 '<(deqp_dir)/modules/gles2/performance/es2pShaderControlStatementTests.hpp',
249 '<(deqp_dir)/modules/gles2/performance/es2pShaderOperatorTests.cpp',
250 '<(deqp_dir)/modules/gles2/performance/es2pShaderOperatorTests.hpp',
251 '<(deqp_dir)/modules/gles2/performance/es2pShaderOptimizationTests.cpp',
252 '<(deqp_dir)/modules/gles2/performance/es2pShaderOptimizationTests.hpp',
253 '<(deqp_dir)/modules/gles2/performance/es2pStateChangeCallTests.cpp',
254 '<(deqp_dir)/modules/gles2/performance/es2pStateChangeCallTests.hpp',
255 '<(deqp_dir)/modules/gles2/performance/es2pStateChangeTests.cpp',
256 '<(deqp_dir)/modules/gles2/performance/es2pStateChangeTests.hpp',
257 '<(deqp_dir)/modules/gles2/performance/es2pTextureCases.cpp',
258 '<(deqp_dir)/modules/gles2/performance/es2pTextureCases.hpp',
259 '<(deqp_dir)/modules/gles2/performance/es2pTextureCountTests.cpp',
260 '<(deqp_dir)/modules/gles2/performance/es2pTextureCountTests.hpp',
261 '<(deqp_dir)/modules/gles2/performance/es2pTextureFilteringTests.cpp',
262 '<(deqp_dir)/modules/gles2/performance/es2pTextureFilteringTests.hpp',
263 '<(deqp_dir)/modules/gles2/performance/es2pTextureFormatTests.cpp',
264 '<(deqp_dir)/modules/gles2/performance/es2pTextureFormatTests.hpp',
265 '<(deqp_dir)/modules/gles2/performance/es2pTextureUploadTests.cpp',
266 '<(deqp_dir)/modules/gles2/performance/es2pTextureUploadTests.hpp',
267 '<(deqp_dir)/modules/gles2/stress/es2sDrawTests.cpp',
268 '<(deqp_dir)/modules/gles2/stress/es2sDrawTests.hpp',
269 '<(deqp_dir)/modules/gles2/stress/es2sLongRunningTests.cpp',
270 '<(deqp_dir)/modules/gles2/stress/es2sLongRunningTests.hpp',
271 '<(deqp_dir)/modules/gles2/stress/es2sMemoryTests.cpp',
272 '<(deqp_dir)/modules/gles2/stress/es2sMemoryTests.hpp',
273 '<(deqp_dir)/modules/gles2/stress/es2sSpecialFloatTests.cpp',
274 '<(deqp_dir)/modules/gles2/stress/es2sSpecialFloatTests.hpp',
275 '<(deqp_dir)/modules/gles2/stress/es2sStressTests.cpp',
276 '<(deqp_dir)/modules/gles2/stress/es2sStressTests.hpp',
277 '<(deqp_dir)/modules/gles2/stress/es2sVertexArrayTests.cpp',
278 '<(deqp_dir)/modules/gles2/stress/es2sVertexArrayTests.hpp',
279 '<(deqp_dir)/modules/gles2/tes2CapabilityTests.cpp',
280 '<(deqp_dir)/modules/gles2/tes2CapabilityTests.hpp',
281 '<(deqp_dir)/modules/gles2/tes2Context.cpp',
282 '<(deqp_dir)/modules/gles2/tes2Context.hpp',
283 '<(deqp_dir)/modules/gles2/tes2InfoTests.cpp',
284 '<(deqp_dir)/modules/gles2/tes2InfoTests.hpp',
285 '<(deqp_dir)/modules/gles2/tes2TestCase.cpp',
286 '<(deqp_dir)/modules/gles2/tes2TestCase.hpp',
287 '<(deqp_dir)/modules/gles2/tes2TestCaseWrapper.cpp',
288 '<(deqp_dir)/modules/gles2/tes2TestCaseWrapper.hpp',
289 '<(deqp_dir)/modules/gles2/tes2TestPackage.cpp',
290 '<(deqp_dir)/modules/gles2/tes2TestPackage.hpp',
291 '<(deqp_dir)/modules/gles2/tes2TestPackageEntry.cpp',
292 ],
293 'deqp_gles3_sources':
294 [
295 '<(deqp_dir)/modules/gles3/accuracy/es3aAccuracyTests.cpp',
296 '<(deqp_dir)/modules/gles3/accuracy/es3aAccuracyTests.hpp',
297 '<(deqp_dir)/modules/gles3/accuracy/es3aTextureFilteringTests.cpp',
298 '<(deqp_dir)/modules/gles3/accuracy/es3aTextureFilteringTests.hpp',
299 '<(deqp_dir)/modules/gles3/accuracy/es3aTextureMipmapTests.cpp',
300 '<(deqp_dir)/modules/gles3/accuracy/es3aTextureMipmapTests.hpp',
301 '<(deqp_dir)/modules/gles3/accuracy/es3aVaryingInterpolationTests.cpp',
302 '<(deqp_dir)/modules/gles3/accuracy/es3aVaryingInterpolationTests.hpp',
303 '<(deqp_dir)/modules/gles3/functional/es3fApiCase.cpp',
304 '<(deqp_dir)/modules/gles3/functional/es3fApiCase.hpp',
305 '<(deqp_dir)/modules/gles3/functional/es3fASTCDecompressionCases.cpp',
306 '<(deqp_dir)/modules/gles3/functional/es3fASTCDecompressionCases.hpp',
307 '<(deqp_dir)/modules/gles3/functional/es3fAttribLocationTests.cpp',
308 '<(deqp_dir)/modules/gles3/functional/es3fAttribLocationTests.hpp',
309 '<(deqp_dir)/modules/gles3/functional/es3fBlendTests.cpp',
310 '<(deqp_dir)/modules/gles3/functional/es3fBlendTests.hpp',
311 '<(deqp_dir)/modules/gles3/functional/es3fBooleanStateQueryTests.cpp',
312 '<(deqp_dir)/modules/gles3/functional/es3fBooleanStateQueryTests.hpp',
313 '<(deqp_dir)/modules/gles3/functional/es3fBufferCopyTests.cpp',
314 '<(deqp_dir)/modules/gles3/functional/es3fBufferCopyTests.hpp',
315 '<(deqp_dir)/modules/gles3/functional/es3fBufferMapTests.cpp',
316 '<(deqp_dir)/modules/gles3/functional/es3fBufferMapTests.hpp',
317 '<(deqp_dir)/modules/gles3/functional/es3fBufferObjectQueryTests.cpp',
318 '<(deqp_dir)/modules/gles3/functional/es3fBufferObjectQueryTests.hpp',
319 '<(deqp_dir)/modules/gles3/functional/es3fBufferWriteTests.cpp',
320 '<(deqp_dir)/modules/gles3/functional/es3fBufferWriteTests.hpp',
321 '<(deqp_dir)/modules/gles3/functional/es3fBuiltinPrecisionTests.cpp',
322 '<(deqp_dir)/modules/gles3/functional/es3fBuiltinPrecisionTests.hpp',
323 '<(deqp_dir)/modules/gles3/functional/es3fClippingTests.cpp',
324 '<(deqp_dir)/modules/gles3/functional/es3fClippingTests.hpp',
325 '<(deqp_dir)/modules/gles3/functional/es3fColorClearTest.cpp',
326 '<(deqp_dir)/modules/gles3/functional/es3fColorClearTest.hpp',
327 '<(deqp_dir)/modules/gles3/functional/es3fCompressedTextureTests.cpp',
328 '<(deqp_dir)/modules/gles3/functional/es3fCompressedTextureTests.hpp',
329 '<(deqp_dir)/modules/gles3/functional/es3fDefaultVertexAttributeTests.cpp',
330 '<(deqp_dir)/modules/gles3/functional/es3fDefaultVertexAttributeTests.hpp',
331 '<(deqp_dir)/modules/gles3/functional/es3fDepthStencilClearTests.cpp',
332 '<(deqp_dir)/modules/gles3/functional/es3fDepthStencilClearTests.hpp',
333 '<(deqp_dir)/modules/gles3/functional/es3fDepthStencilTests.cpp',
334 '<(deqp_dir)/modules/gles3/functional/es3fDepthStencilTests.hpp',
335 '<(deqp_dir)/modules/gles3/functional/es3fDepthTests.cpp',
336 '<(deqp_dir)/modules/gles3/functional/es3fDepthTests.hpp',
337 '<(deqp_dir)/modules/gles3/functional/es3fDitheringTests.cpp',
338 '<(deqp_dir)/modules/gles3/functional/es3fDitheringTests.hpp',
339 '<(deqp_dir)/modules/gles3/functional/es3fDrawTests.cpp',
340 '<(deqp_dir)/modules/gles3/functional/es3fDrawTests.hpp',
341 '<(deqp_dir)/modules/gles3/functional/es3fFboApiTests.cpp',
342 '<(deqp_dir)/modules/gles3/functional/es3fFboApiTests.hpp',
343 '<(deqp_dir)/modules/gles3/functional/es3fFboColorbufferTests.cpp',
344 '<(deqp_dir)/modules/gles3/functional/es3fFboColorbufferTests.hpp',
345 '<(deqp_dir)/modules/gles3/functional/es3fFboCompletenessTests.cpp',
346 '<(deqp_dir)/modules/gles3/functional/es3fFboCompletenessTests.hpp',
347 '<(deqp_dir)/modules/gles3/functional/es3fFboDepthbufferTests.cpp',
348 '<(deqp_dir)/modules/gles3/functional/es3fFboDepthbufferTests.hpp',
349 '<(deqp_dir)/modules/gles3/functional/es3fFboInvalidateTests.cpp',
350 '<(deqp_dir)/modules/gles3/functional/es3fFboInvalidateTests.hpp',
351 '<(deqp_dir)/modules/gles3/functional/es3fFboMultisampleTests.cpp',
352 '<(deqp_dir)/modules/gles3/functional/es3fFboMultisampleTests.hpp',
353 '<(deqp_dir)/modules/gles3/functional/es3fFboRenderTest.cpp',
354 '<(deqp_dir)/modules/gles3/functional/es3fFboRenderTest.hpp',
355 '<(deqp_dir)/modules/gles3/functional/es3fFboStateQueryTests.cpp',
356 '<(deqp_dir)/modules/gles3/functional/es3fFboStateQueryTests.hpp',
357 '<(deqp_dir)/modules/gles3/functional/es3fFboStencilbufferTests.cpp',
358 '<(deqp_dir)/modules/gles3/functional/es3fFboStencilbufferTests.hpp',
359 '<(deqp_dir)/modules/gles3/functional/es3fFboTestCase.cpp',
360 '<(deqp_dir)/modules/gles3/functional/es3fFboTestCase.hpp',
361 '<(deqp_dir)/modules/gles3/functional/es3fFboTestUtil.cpp',
362 '<(deqp_dir)/modules/gles3/functional/es3fFboTestUtil.hpp',
363 '<(deqp_dir)/modules/gles3/functional/es3fFloatStateQueryTests.cpp',
364 '<(deqp_dir)/modules/gles3/functional/es3fFloatStateQueryTests.hpp',
365 '<(deqp_dir)/modules/gles3/functional/es3fFlushFinishTests.cpp',
366 '<(deqp_dir)/modules/gles3/functional/es3fFlushFinishTests.hpp',
367 '<(deqp_dir)/modules/gles3/functional/es3fFragDepthTests.cpp',
368 '<(deqp_dir)/modules/gles3/functional/es3fFragDepthTests.hpp',
369 '<(deqp_dir)/modules/gles3/functional/es3fFragmentOutputTests.cpp',
370 '<(deqp_dir)/modules/gles3/functional/es3fFragmentOutputTests.hpp',
371 '<(deqp_dir)/modules/gles3/functional/es3fFragOpInteractionTests.cpp',
372 '<(deqp_dir)/modules/gles3/functional/es3fFragOpInteractionTests.hpp',
373 '<(deqp_dir)/modules/gles3/functional/es3fFramebufferBlitTests.cpp',
374 '<(deqp_dir)/modules/gles3/functional/es3fFramebufferBlitTests.hpp',
375 '<(deqp_dir)/modules/gles3/functional/es3fFunctionalTests.cpp',
376 '<(deqp_dir)/modules/gles3/functional/es3fFunctionalTests.hpp',
377 '<(deqp_dir)/modules/gles3/functional/es3fImplementationLimitTests.cpp',
378 '<(deqp_dir)/modules/gles3/functional/es3fImplementationLimitTests.hpp',
379 '<(deqp_dir)/modules/gles3/functional/es3fIndexedStateQueryTests.cpp',
380 '<(deqp_dir)/modules/gles3/functional/es3fIndexedStateQueryTests.hpp',
381 '<(deqp_dir)/modules/gles3/functional/es3fInstancedRenderingTests.cpp',
382 '<(deqp_dir)/modules/gles3/functional/es3fInstancedRenderingTests.hpp',
383 '<(deqp_dir)/modules/gles3/functional/es3fInteger64StateQueryTests.cpp',
384 '<(deqp_dir)/modules/gles3/functional/es3fInteger64StateQueryTests.hpp',
385 '<(deqp_dir)/modules/gles3/functional/es3fIntegerStateQueryTests.cpp',
386 '<(deqp_dir)/modules/gles3/functional/es3fIntegerStateQueryTests.hpp',
387 '<(deqp_dir)/modules/gles3/functional/es3fInternalFormatQueryTests.cpp',
388 '<(deqp_dir)/modules/gles3/functional/es3fInternalFormatQueryTests.hpp',
389 '<(deqp_dir)/modules/gles3/functional/es3fLifetimeTests.cpp',
390 '<(deqp_dir)/modules/gles3/functional/es3fLifetimeTests.hpp',
391 '<(deqp_dir)/modules/gles3/functional/es3fMultisampleTests.cpp',
392 '<(deqp_dir)/modules/gles3/functional/es3fMultisampleTests.hpp',
393 '<(deqp_dir)/modules/gles3/functional/es3fNegativeBufferApiTests.cpp',
394 '<(deqp_dir)/modules/gles3/functional/es3fNegativeBufferApiTests.hpp',
395 '<(deqp_dir)/modules/gles3/functional/es3fNegativeFragmentApiTests.cpp',
396 '<(deqp_dir)/modules/gles3/functional/es3fNegativeFragmentApiTests.hpp',
397 '<(deqp_dir)/modules/gles3/functional/es3fNegativeShaderApiTests.cpp',
398 '<(deqp_dir)/modules/gles3/functional/es3fNegativeShaderApiTests.hpp',
399 '<(deqp_dir)/modules/gles3/functional/es3fNegativeStateApiTests.cpp',
400 '<(deqp_dir)/modules/gles3/functional/es3fNegativeStateApiTests.hpp',
401 '<(deqp_dir)/modules/gles3/functional/es3fNegativeTextureApiTests.cpp',
402 '<(deqp_dir)/modules/gles3/functional/es3fNegativeTextureApiTests.hpp',
403 '<(deqp_dir)/modules/gles3/functional/es3fNegativeVertexArrayApiTests.cpp',
404 '<(deqp_dir)/modules/gles3/functional/es3fNegativeVertexArrayApiTests.hpp',
405 '<(deqp_dir)/modules/gles3/functional/es3fOcclusionQueryTests.cpp',
406 '<(deqp_dir)/modules/gles3/functional/es3fOcclusionQueryTests.hpp',
407 '<(deqp_dir)/modules/gles3/functional/es3fPixelBufferObjectTests.cpp',
408 '<(deqp_dir)/modules/gles3/functional/es3fPixelBufferObjectTests.hpp',
409 '<(deqp_dir)/modules/gles3/functional/es3fPolygonOffsetTests.cpp',
410 '<(deqp_dir)/modules/gles3/functional/es3fPolygonOffsetTests.hpp',
411 '<(deqp_dir)/modules/gles3/functional/es3fPrerequisiteTests.cpp',
412 '<(deqp_dir)/modules/gles3/functional/es3fPrerequisiteTests.hpp',
413 '<(deqp_dir)/modules/gles3/functional/es3fPrimitiveRestartTests.cpp',
414 '<(deqp_dir)/modules/gles3/functional/es3fPrimitiveRestartTests.hpp',
415 '<(deqp_dir)/modules/gles3/functional/es3fRandomFragmentOpTests.cpp',
416 '<(deqp_dir)/modules/gles3/functional/es3fRandomFragmentOpTests.hpp',
417 '<(deqp_dir)/modules/gles3/functional/es3fRandomShaderTests.cpp',
418 '<(deqp_dir)/modules/gles3/functional/es3fRandomShaderTests.hpp',
419 '<(deqp_dir)/modules/gles3/functional/es3fRasterizationTests.cpp',
420 '<(deqp_dir)/modules/gles3/functional/es3fRasterizationTests.hpp',
421 '<(deqp_dir)/modules/gles3/functional/es3fRasterizerDiscardTests.cpp',
422 '<(deqp_dir)/modules/gles3/functional/es3fRasterizerDiscardTests.hpp',
423 '<(deqp_dir)/modules/gles3/functional/es3fRboStateQueryTests.cpp',
424 '<(deqp_dir)/modules/gles3/functional/es3fRboStateQueryTests.hpp',
425 '<(deqp_dir)/modules/gles3/functional/es3fReadPixelsTests.cpp',
426 '<(deqp_dir)/modules/gles3/functional/es3fReadPixelsTests.hpp',
427 '<(deqp_dir)/modules/gles3/functional/es3fSamplerObjectTests.cpp',
428 '<(deqp_dir)/modules/gles3/functional/es3fSamplerObjectTests.hpp',
429 '<(deqp_dir)/modules/gles3/functional/es3fSamplerStateQueryTests.cpp',
430 '<(deqp_dir)/modules/gles3/functional/es3fSamplerStateQueryTests.hpp',
431 '<(deqp_dir)/modules/gles3/functional/es3fScissorTests.cpp',
432 '<(deqp_dir)/modules/gles3/functional/es3fScissorTests.hpp',
433 '<(deqp_dir)/modules/gles3/functional/es3fShaderApiTests.cpp',
434 '<(deqp_dir)/modules/gles3/functional/es3fShaderApiTests.hpp',
435 '<(deqp_dir)/modules/gles3/functional/es3fShaderBuiltinVarTests.cpp',
436 '<(deqp_dir)/modules/gles3/functional/es3fShaderBuiltinVarTests.hpp',
437 '<(deqp_dir)/modules/gles3/functional/es3fShaderCommonFunctionTests.cpp',
438 '<(deqp_dir)/modules/gles3/functional/es3fShaderCommonFunctionTests.hpp',
439 '<(deqp_dir)/modules/gles3/functional/es3fShaderConstExprTests.cpp',
440 '<(deqp_dir)/modules/gles3/functional/es3fShaderConstExprTests.hpp',
441 '<(deqp_dir)/modules/gles3/functional/es3fShaderDerivateTests.cpp',
442 '<(deqp_dir)/modules/gles3/functional/es3fShaderDerivateTests.hpp',
443 '<(deqp_dir)/modules/gles3/functional/es3fShaderDiscardTests.cpp',
444 '<(deqp_dir)/modules/gles3/functional/es3fShaderDiscardTests.hpp',
445 '<(deqp_dir)/modules/gles3/functional/es3fShaderFragDataTests.cpp',
446 '<(deqp_dir)/modules/gles3/functional/es3fShaderFragDataTests.hpp',
447 '<(deqp_dir)/modules/gles3/functional/es3fShaderIndexingTests.cpp',
448 '<(deqp_dir)/modules/gles3/functional/es3fShaderIndexingTests.hpp',
449 '<(deqp_dir)/modules/gles3/functional/es3fShaderInvarianceTests.cpp',
450 '<(deqp_dir)/modules/gles3/functional/es3fShaderInvarianceTests.hpp',
451 '<(deqp_dir)/modules/gles3/functional/es3fShaderLoopTests.cpp',
452 '<(deqp_dir)/modules/gles3/functional/es3fShaderLoopTests.hpp',
453 '<(deqp_dir)/modules/gles3/functional/es3fShaderMatrixTests.cpp',
454 '<(deqp_dir)/modules/gles3/functional/es3fShaderMatrixTests.hpp',
455 '<(deqp_dir)/modules/gles3/functional/es3fShaderOperatorTests.cpp',
456 '<(deqp_dir)/modules/gles3/functional/es3fShaderOperatorTests.hpp',
457 '<(deqp_dir)/modules/gles3/functional/es3fShaderPackingFunctionTests.cpp',
458 '<(deqp_dir)/modules/gles3/functional/es3fShaderPackingFunctionTests.hpp',
459 '<(deqp_dir)/modules/gles3/functional/es3fShaderPrecisionTests.cpp',
460 '<(deqp_dir)/modules/gles3/functional/es3fShaderPrecisionTests.hpp',
461 '<(deqp_dir)/modules/gles3/functional/es3fShaderReturnTests.cpp',
462 '<(deqp_dir)/modules/gles3/functional/es3fShaderReturnTests.hpp',
463 '<(deqp_dir)/modules/gles3/functional/es3fShaderStateQueryTests.cpp',
464 '<(deqp_dir)/modules/gles3/functional/es3fShaderStateQueryTests.hpp',
465 '<(deqp_dir)/modules/gles3/functional/es3fShaderStructTests.cpp',
466 '<(deqp_dir)/modules/gles3/functional/es3fShaderStructTests.hpp',
467 '<(deqp_dir)/modules/gles3/functional/es3fShaderSwitchTests.cpp',
468 '<(deqp_dir)/modules/gles3/functional/es3fShaderSwitchTests.hpp',
469 '<(deqp_dir)/modules/gles3/functional/es3fShaderTextureFunctionTests.cpp',
470 '<(deqp_dir)/modules/gles3/functional/es3fShaderTextureFunctionTests.hpp',
471 '<(deqp_dir)/modules/gles3/functional/es3fStencilTests.cpp',
472 '<(deqp_dir)/modules/gles3/functional/es3fStencilTests.hpp',
473 '<(deqp_dir)/modules/gles3/functional/es3fStringQueryTests.cpp',
474 '<(deqp_dir)/modules/gles3/functional/es3fStringQueryTests.hpp',
475 '<(deqp_dir)/modules/gles3/functional/es3fSyncTests.cpp',
476 '<(deqp_dir)/modules/gles3/functional/es3fSyncTests.hpp',
477 '<(deqp_dir)/modules/gles3/functional/es3fTextureFilteringTests.cpp',
478 '<(deqp_dir)/modules/gles3/functional/es3fTextureFilteringTests.hpp',
479 '<(deqp_dir)/modules/gles3/functional/es3fTextureFormatTests.cpp',
480 '<(deqp_dir)/modules/gles3/functional/es3fTextureFormatTests.hpp',
481 '<(deqp_dir)/modules/gles3/functional/es3fTextureMipmapTests.cpp',
482 '<(deqp_dir)/modules/gles3/functional/es3fTextureMipmapTests.hpp',
483 '<(deqp_dir)/modules/gles3/functional/es3fTextureShadowTests.cpp',
484 '<(deqp_dir)/modules/gles3/functional/es3fTextureShadowTests.hpp',
485 '<(deqp_dir)/modules/gles3/functional/es3fTextureSizeTests.cpp',
486 '<(deqp_dir)/modules/gles3/functional/es3fTextureSizeTests.hpp',
487 '<(deqp_dir)/modules/gles3/functional/es3fTextureSpecificationTests.cpp',
488 '<(deqp_dir)/modules/gles3/functional/es3fTextureSpecificationTests.hpp',
489 '<(deqp_dir)/modules/gles3/functional/es3fTextureStateQueryTests.cpp',
490 '<(deqp_dir)/modules/gles3/functional/es3fTextureStateQueryTests.hpp',
491 '<(deqp_dir)/modules/gles3/functional/es3fTextureSwizzleTests.cpp',
492 '<(deqp_dir)/modules/gles3/functional/es3fTextureSwizzleTests.hpp',
493 '<(deqp_dir)/modules/gles3/functional/es3fTextureUnitTests.cpp',
494 '<(deqp_dir)/modules/gles3/functional/es3fTextureUnitTests.hpp',
495 '<(deqp_dir)/modules/gles3/functional/es3fTextureWrapTests.cpp',
496 '<(deqp_dir)/modules/gles3/functional/es3fTextureWrapTests.hpp',
497 '<(deqp_dir)/modules/gles3/functional/es3fTransformFeedbackTests.cpp',
498 '<(deqp_dir)/modules/gles3/functional/es3fTransformFeedbackTests.hpp',
499 '<(deqp_dir)/modules/gles3/functional/es3fUniformApiTests.cpp',
500 '<(deqp_dir)/modules/gles3/functional/es3fUniformApiTests.hpp',
501 '<(deqp_dir)/modules/gles3/functional/es3fUniformBlockTests.cpp',
502 '<(deqp_dir)/modules/gles3/functional/es3fUniformBlockTests.hpp',
503 '<(deqp_dir)/modules/gles3/functional/es3fVertexArrayObjectTests.cpp',
504 '<(deqp_dir)/modules/gles3/functional/es3fVertexArrayObjectTests.hpp',
505 '<(deqp_dir)/modules/gles3/functional/es3fVertexArrayTest.cpp',
506 '<(deqp_dir)/modules/gles3/functional/es3fVertexArrayTest.hpp',
507 '<(deqp_dir)/modules/gles3/functional/es3fVertexTextureTests.cpp',
508 '<(deqp_dir)/modules/gles3/functional/es3fVertexTextureTests.hpp',
509 '<(deqp_dir)/modules/gles3/performance/es3pBlendTests.cpp',
510 '<(deqp_dir)/modules/gles3/performance/es3pBlendTests.hpp',
511 '<(deqp_dir)/modules/gles3/performance/es3pBufferDataUploadTests.cpp',
512 '<(deqp_dir)/modules/gles3/performance/es3pBufferDataUploadTests.hpp',
513 '<(deqp_dir)/modules/gles3/performance/es3pDepthTests.cpp',
514 '<(deqp_dir)/modules/gles3/performance/es3pDepthTests.hpp',
515 '<(deqp_dir)/modules/gles3/performance/es3pPerformanceTests.cpp',
516 '<(deqp_dir)/modules/gles3/performance/es3pPerformanceTests.hpp',
517 '<(deqp_dir)/modules/gles3/performance/es3pRedundantStateChangeTests.cpp',
518 '<(deqp_dir)/modules/gles3/performance/es3pRedundantStateChangeTests.hpp',
519 '<(deqp_dir)/modules/gles3/performance/es3pShaderCompilationCases.cpp',
520 '<(deqp_dir)/modules/gles3/performance/es3pShaderCompilationCases.hpp',
521 '<(deqp_dir)/modules/gles3/performance/es3pShaderCompilerTests.cpp',
522 '<(deqp_dir)/modules/gles3/performance/es3pShaderCompilerTests.hpp',
523 '<(deqp_dir)/modules/gles3/performance/es3pShaderControlStatementTests.cpp',
524 '<(deqp_dir)/modules/gles3/performance/es3pShaderControlStatementTests.hpp',
525 '<(deqp_dir)/modules/gles3/performance/es3pShaderOperatorTests.cpp',
526 '<(deqp_dir)/modules/gles3/performance/es3pShaderOperatorTests.hpp',
527 '<(deqp_dir)/modules/gles3/performance/es3pShaderOptimizationTests.cpp',
528 '<(deqp_dir)/modules/gles3/performance/es3pShaderOptimizationTests.hpp',
529 '<(deqp_dir)/modules/gles3/performance/es3pStateChangeCallTests.cpp',
530 '<(deqp_dir)/modules/gles3/performance/es3pStateChangeCallTests.hpp',
531 '<(deqp_dir)/modules/gles3/performance/es3pStateChangeTests.cpp',
532 '<(deqp_dir)/modules/gles3/performance/es3pStateChangeTests.hpp',
533 '<(deqp_dir)/modules/gles3/performance/es3pTextureCases.cpp',
534 '<(deqp_dir)/modules/gles3/performance/es3pTextureCases.hpp',
535 '<(deqp_dir)/modules/gles3/performance/es3pTextureCountTests.cpp',
536 '<(deqp_dir)/modules/gles3/performance/es3pTextureCountTests.hpp',
537 '<(deqp_dir)/modules/gles3/performance/es3pTextureFilteringTests.cpp',
538 '<(deqp_dir)/modules/gles3/performance/es3pTextureFilteringTests.hpp',
539 '<(deqp_dir)/modules/gles3/performance/es3pTextureFormatTests.cpp',
540 '<(deqp_dir)/modules/gles3/performance/es3pTextureFormatTests.hpp',
541 '<(deqp_dir)/modules/gles3/stress/es3sDrawTests.cpp',
542 '<(deqp_dir)/modules/gles3/stress/es3sDrawTests.hpp',
543 '<(deqp_dir)/modules/gles3/stress/es3sLongRunningShaderTests.cpp',
544 '<(deqp_dir)/modules/gles3/stress/es3sLongRunningShaderTests.hpp',
545 '<(deqp_dir)/modules/gles3/stress/es3sLongRunningTests.cpp',
546 '<(deqp_dir)/modules/gles3/stress/es3sLongRunningTests.hpp',
547 '<(deqp_dir)/modules/gles3/stress/es3sLongShaderTests.cpp',
548 '<(deqp_dir)/modules/gles3/stress/es3sLongShaderTests.hpp',
549 '<(deqp_dir)/modules/gles3/stress/es3sMemoryTests.cpp',
550 '<(deqp_dir)/modules/gles3/stress/es3sMemoryTests.hpp',
551 '<(deqp_dir)/modules/gles3/stress/es3sOcclusionQueryTests.cpp',
552 '<(deqp_dir)/modules/gles3/stress/es3sOcclusionQueryTests.hpp',
553 '<(deqp_dir)/modules/gles3/stress/es3sSpecialFloatTests.cpp',
554 '<(deqp_dir)/modules/gles3/stress/es3sSpecialFloatTests.hpp',
555 '<(deqp_dir)/modules/gles3/stress/es3sStressTests.cpp',
556 '<(deqp_dir)/modules/gles3/stress/es3sStressTests.hpp',
557 '<(deqp_dir)/modules/gles3/stress/es3sSyncTests.cpp',
558 '<(deqp_dir)/modules/gles3/stress/es3sSyncTests.hpp',
559 '<(deqp_dir)/modules/gles3/stress/es3sVertexArrayTests.cpp',
560 '<(deqp_dir)/modules/gles3/stress/es3sVertexArrayTests.hpp',
561 '<(deqp_dir)/modules/gles3/tes3Context.cpp',
562 '<(deqp_dir)/modules/gles3/tes3Context.hpp',
563 '<(deqp_dir)/modules/gles3/tes3InfoTests.cpp',
564 '<(deqp_dir)/modules/gles3/tes3InfoTests.hpp',
565 '<(deqp_dir)/modules/gles3/tes3TestCase.cpp',
566 '<(deqp_dir)/modules/gles3/tes3TestCase.hpp',
567 '<(deqp_dir)/modules/gles3/tes3TestCaseWrapper.cpp',
568 '<(deqp_dir)/modules/gles3/tes3TestCaseWrapper.hpp',
569 '<(deqp_dir)/modules/gles3/tes3TestPackage.cpp',
570 '<(deqp_dir)/modules/gles3/tes3TestPackage.hpp',
571 '<(deqp_dir)/modules/gles3/tes3TestPackageEntry.cpp',
572 ],
573 },
574
575 'conditions':
576 [
577 ['angle_standalone==1',
578 {
579 'conditions':
580 [
581 ['OS=="win"',
582 {
583 'targets':
584 [
585 {
586 'target_name': 'angle_zlib',
587 'type': 'static_library',
588 'includes': [ '../../build/common_defines.gypi', ],
589 'include_dirs':
590 [
591 '<(zlib_dir)',
592 ],
593 'direct_dependent_settings':
594 {
595 'include_dirs':
596 [
597 '<(zlib_dir)',
598 ],
599 },
600 'msvs_settings':
601 {
602 'VCCLCompilerTool':
603 {
604 'AdditionalOptions':
605 [
606 '/wd4131', # old-style declarator
607 '/wd4324', # structure was padded
608 '/wd4701', # potentially uninit used
609 '/wd4996', # deprecated
610 ],
611 },
612 },
613 'sources':
614 [
615 '<(zlib_dir)/adler32.c',
616 '<(zlib_dir)/compress.c',
617 '<(zlib_dir)/crc32.c',
618 '<(zlib_dir)/crc32.h',
619 '<(zlib_dir)/deflate.c',
620 '<(zlib_dir)/deflate.h',
621 '<(zlib_dir)/gzclose.c',
622 '<(zlib_dir)/gzguts.h',
623 '<(zlib_dir)/gzlib.c',
624 '<(zlib_dir)/gzread.c',
625 '<(zlib_dir)/gzwrite.c',
626 '<(zlib_dir)/infback.c',
627 '<(zlib_dir)/inffast.c',
628 '<(zlib_dir)/inffast.h',
629 '<(zlib_dir)/inffixed.h',
630 '<(zlib_dir)/inflate.c',
631 '<(zlib_dir)/inflate.h',
632 '<(zlib_dir)/inftrees.c',
633 '<(zlib_dir)/inftrees.h',
634 '<(zlib_dir)/mozzconf.h',
635 '<(zlib_dir)/trees.c',
636 '<(zlib_dir)/trees.h',
637 '<(zlib_dir)/uncompr.c',
638 '<(zlib_dir)/x86.h',
639 '<(zlib_dir)/zconf.h',
640 '<(zlib_dir)/zlib.h',
641 '<(zlib_dir)/zutil.c',
642 '<(zlib_dir)/zutil.h',
643 '<(zlib_dir)/simd_stub.c',
644 ],
645 },
646
647 {
648 'target_name': 'angle_libpng',
649 'type': 'static_library',
650 'includes': [ '../../build/common_defines.gypi', ],
651 'dependencies':
652 [
653 'angle_zlib'
654 ],
655 'msvs_settings':
656 {
657 'VCCLCompilerTool':
658 {
659 'AdditionalOptions':
660 [
661 '/wd4018', # signed/unsigned mismatch
662 '/wd4028', # parameter differs from decl
663 '/wd4101', # unreferenced local
664 '/wd4189', # unreferenced but initted
665 ],
666 },
667 },
668 'sources':
669 [
670 '<(libpng_dir)/png.c',
671 '<(libpng_dir)/pngerror.c',
672 '<(libpng_dir)/pngget.c',
673 '<(libpng_dir)/pngmem.c',
674 '<(libpng_dir)/pngpread.c',
675 '<(libpng_dir)/pngread.c',
676 '<(libpng_dir)/pngrio.c',
677 '<(libpng_dir)/pngrtran.c',
678 '<(libpng_dir)/pngrutil.c',
679 '<(libpng_dir)/pngset.c',
680 '<(libpng_dir)/pngtrans.c',
681 '<(libpng_dir)/pngwio.c',
682 '<(libpng_dir)/pngwrite.c',
683 '<(libpng_dir)/pngwtran.c',
684 '<(libpng_dir)/pngwutil.c',
685 ],
686 },
687
688 {
689 'target_name': 'angle_deqp_decpp',
690 'type': 'static_library',
691 'msvs_disabled_warnings':
692 [
693 '<@(deqp_msvs_disabled_warnings)',
694 ],
695 'msvs_settings':
696 {
697 'VCCLCompilerTool':
698 {
699 'AdditionalOptions':
700 [
701 '/EHsc', # dEQP requires exceptions
702 ],
703 },
704 },
705 'defines': ['<@(deqp_defines)'],
706 'include_dirs': ['<@(deqp_include_dirs)'],
707 'sources':
708 [
709 '<(deqp_dir)/framework/delibs/decpp/deArrayBuffer.cpp',
710 '<(deqp_dir)/framework/delibs/decpp/deBlockBuffer.cpp',
711 '<(deqp_dir)/framework/delibs/decpp/deCommandLine.cpp',
712 '<(deqp_dir)/framework/delibs/decpp/deDefs.cpp',
713 '<(deqp_dir)/framework/delibs/decpp/deDirectoryIterator.cpp',
714 '<(deqp_dir)/framework/delibs/decpp/deDynamicLibrary.cpp',
715 '<(deqp_dir)/framework/delibs/decpp/deFilePath.cpp',
716 '<(deqp_dir)/framework/delibs/decpp/deMemPool.cpp',
717 '<(deqp_dir)/framework/delibs/decpp/deMutex.cpp',
718 '<(deqp_dir)/framework/delibs/decpp/dePoolArray.cpp',
719 '<(deqp_dir)/framework/delibs/decpp/dePoolString.cpp',
720 '<(deqp_dir)/framework/delibs/decpp/deProcess.cpp',
721 '<(deqp_dir)/framework/delibs/decpp/deRandom.cpp',
722 '<(deqp_dir)/framework/delibs/decpp/deRingBuffer.cpp',
723 '<(deqp_dir)/framework/delibs/decpp/deSemaphore.cpp',
724 '<(deqp_dir)/framework/delibs/decpp/deSharedPtr.cpp',
725 '<(deqp_dir)/framework/delibs/decpp/deSocket.cpp',
726 '<(deqp_dir)/framework/delibs/decpp/deSTLUtil.cpp',
727 '<(deqp_dir)/framework/delibs/decpp/deStringUtil.cpp',
728 '<(deqp_dir)/framework/delibs/decpp/deThread.cpp',
729 '<(deqp_dir)/framework/delibs/decpp/deThreadLocal.cpp',
730 '<(deqp_dir)/framework/delibs/decpp/deThreadSafeRingBuffer.cpp',
731 '<(deqp_dir)/framework/delibs/decpp/deUniquePtr.cpp',
732 ],
733 },
734
735 {
736 'target_name': 'angle_deqp_libtester',
737 'type': 'shared_library',
738 'dependencies':
739 [
740 'angle_deqp_decpp',
741 'angle_libpng',
742 '<(angle_path)/src/angle.gyp:libEGL',
743 ],
744 'defines': ['<@(deqp_defines)'],
745 'include_dirs':
746 [
747 '<(angle_path)/include',
748 '<@(deqp_include_dirs)'
749 ],
750 'msvs_disabled_warnings':
751 [
752 '<@(deqp_msvs_disabled_warnings)',
753 ],
754 'msvs_settings':
755 {
756 'VCCLCompilerTool':
757 {
758 'AdditionalOptions':
759 [
760 '/EHsc', # dEQP requires exceptions
761 '/bigobj', # needed for glsBuiltinPrecisionTests.cpp
762 ],
763 },
764 'VCLinkerTool':
765 {
766 'AdditionalDependencies':
767 [
768 'dbghelp.lib',
769 'gdi32.lib',
770 'user32.lib',
771 'ws2_32.lib',
772 ],
773 },
774 },
775 'sources':
776 [
777 '<(deqp_dir)/execserver/xsDefs.cpp',
778 '<(deqp_dir)/execserver/xsExecutionServer.cpp',
779 '<(deqp_dir)/execserver/xsPosixFileReader.cpp',
780 '<(deqp_dir)/execserver/xsPosixTestProcess.cpp',
781 '<(deqp_dir)/execserver/xsProtocol.cpp',
782 '<(deqp_dir)/execserver/xsTcpServer.cpp',
783 '<(deqp_dir)/execserver/xsTestDriver.cpp',
784 '<(deqp_dir)/execserver/xsTestProcess.cpp',
785 '<(deqp_dir)/executor/xeBatchExecutor.cpp',
786 '<(deqp_dir)/executor/xeBatchResult.cpp',
787 '<(deqp_dir)/executor/xeCallQueue.cpp',
788 '<(deqp_dir)/executor/xeCommLink.cpp',
789 '<(deqp_dir)/executor/xeContainerFormatParser.cpp',
790 '<(deqp_dir)/executor/xeDefs.cpp',
791 '<(deqp_dir)/executor/xeLocalTcpIpLink.cpp',
792 '<(deqp_dir)/executor/xeTcpIpLink.cpp',
793 '<(deqp_dir)/executor/xeTestCase.cpp',
794 '<(deqp_dir)/executor/xeTestCaseListParser.cpp',
795 '<(deqp_dir)/executor/xeTestCaseResult.cpp',
796 '<(deqp_dir)/executor/xeTestLogParser.cpp',
797 '<(deqp_dir)/executor/xeTestLogWriter.cpp',
798 '<(deqp_dir)/executor/xeTestResultParser.cpp',
799 '<(deqp_dir)/executor/xeXMLParser.cpp',
800 '<(deqp_dir)/executor/xeXMLWriter.cpp',
801 '<(deqp_dir)/framework/common/tcuApp.cpp',
802 '<(deqp_dir)/framework/common/tcuBilinearImageCompare.cpp',
803 '<(deqp_dir)/framework/common/tcuCommandLine.cpp',
804 '<(deqp_dir)/framework/common/tcuCompressedTexture.cpp',
805 '<(deqp_dir)/framework/common/tcuCPUWarmup.cpp',
806 '<(deqp_dir)/framework/common/tcuDefs.cpp',
807 '<(deqp_dir)/framework/common/tcuEither.cpp',
808 '<(deqp_dir)/framework/common/tcuFactoryRegistry.cpp',
809 '<(deqp_dir)/framework/common/tcuFloatFormat.cpp',
810 '<(deqp_dir)/framework/common/tcuFunctionLibrary.cpp',
811 '<(deqp_dir)/framework/common/tcuFuzzyImageCompare.cpp',
812 '<(deqp_dir)/framework/common/tcuImageCompare.cpp',
813 '<(deqp_dir)/framework/common/tcuImageIO.cpp',
814 '<(deqp_dir)/framework/common/tcuInterval.cpp',
815 '<(deqp_dir)/framework/common/tcuPlatform.cpp',
816 '<(deqp_dir)/framework/common/tcuRandomValueIterator.cpp',
817 '<(deqp_dir)/framework/common/tcuRenderTarget.cpp',
818 '<(deqp_dir)/framework/common/tcuResource.cpp',
819 '<(deqp_dir)/framework/common/tcuResultCollector.cpp',
820 '<(deqp_dir)/framework/common/tcuRGBA.cpp',
821 '<(deqp_dir)/framework/common/tcuStringTemplate.cpp',
822 '<(deqp_dir)/framework/common/tcuSurface.cpp',
823 '<(deqp_dir)/framework/common/tcuTestCase.cpp',
824 '<(deqp_dir)/framework/common/tcuTestCaseWrapper.cpp',
825 '<(deqp_dir)/framework/common/tcuTestContext.cpp',
826 '<(deqp_dir)/framework/common/tcuTestExecutor.cpp',
827 '<(deqp_dir)/framework/common/tcuTestLog.cpp',
828 '<(deqp_dir)/framework/common/tcuTestPackage.cpp',
829 '<(deqp_dir)/framework/common/tcuTexCompareVerifier.cpp',
830 '<(deqp_dir)/framework/common/tcuTexLookupVerifier.cpp',
831 '<(deqp_dir)/framework/common/tcuTexture.cpp',
832 '<(deqp_dir)/framework/common/tcuTextureUtil.cpp',
833 '<(deqp_dir)/framework/common/tcuTexVerifierUtil.cpp',
834 '<(deqp_dir)/framework/common/tcuThreadUtil.cpp',
835 '<(deqp_dir)/framework/common/tcuSeedBuilder.cpp',
836 '<(deqp_dir)/framework/delibs/debase/deDefs.c',
837 '<(deqp_dir)/framework/delibs/debase/deFloat16.c',
838 '<(deqp_dir)/framework/delibs/debase/deInt32.c',
839 '<(deqp_dir)/framework/delibs/debase/deInt32Test.c',
840 '<(deqp_dir)/framework/delibs/debase/deMath.c',
841 '<(deqp_dir)/framework/delibs/debase/deMemory.c',
842 '<(deqp_dir)/framework/delibs/debase/deRandom.c',
843 '<(deqp_dir)/framework/delibs/debase/deString.c',
844 '<(deqp_dir)/framework/delibs/deimage/deImage.c',
845 '<(deqp_dir)/framework/delibs/deimage/deTarga.c',
846 '<(deqp_dir)/framework/delibs/depool/deMemPool.c',
847 '<(deqp_dir)/framework/delibs/depool/dePoolArray.c',
848 '<(deqp_dir)/framework/delibs/depool/dePoolHashArray.c',
849 '<(deqp_dir)/framework/delibs/depool/dePoolHash.c',
850 '<(deqp_dir)/framework/delibs/depool/dePoolHashSet.c',
851 '<(deqp_dir)/framework/delibs/depool/dePoolHeap.c',
852 '<(deqp_dir)/framework/delibs/depool/dePoolMultiSet.c',
853 '<(deqp_dir)/framework/delibs/depool/dePoolSet.c',
854 '<(deqp_dir)/framework/delibs/depool/dePoolStringBuilder.c',
855 '<(deqp_dir)/framework/delibs/depool/dePoolTest.c',
856 '<(deqp_dir)/framework/delibs/destream/deFileStream.c',
857 '<(deqp_dir)/framework/delibs/destream/deRingbuffer.c',
858 '<(deqp_dir)/framework/delibs/destream/deStreamCpyThread.c',
859 '<(deqp_dir)/framework/delibs/destream/deThreadStream.c',
860 '<(deqp_dir)/framework/delibs/dethread/deAtomic.c',
861 '<(deqp_dir)/framework/delibs/dethread/deSingleton.c',
862 '<(deqp_dir)/framework/delibs/dethread/deThreadTest.c',
863 # TODO(jmadill): other platforms
864 '<(deqp_dir)/framework/delibs/dethread/win32/deMutexWin32.c',
865 '<(deqp_dir)/framework/delibs/dethread/win32/deSemaphoreWin32.c',
866 '<(deqp_dir)/framework/delibs/dethread/win32/deThreadLocalWin32.c',
867 '<(deqp_dir)/framework/delibs/dethread/win32/deThreadWin32.c',
868 #'<(deqp_dir)/framework/delibs/dethread/unix/deMutexUnix.c',
869 #'<(deqp_dir)/framework/delibs/dethread/unix/deNamedSemaphoreUnix.c',
870 #'<(deqp_dir)/framework/delibs/dethread/unix/deSemaphoreUnix.c',
871 #'<(deqp_dir)/framework/delibs/dethread/unix/deThreadLocalUnix.c',
872 #'<(deqp_dir)/framework/delibs/dethread/unix/deThreadUnix.c',
873 '<(deqp_dir)/framework/delibs/deutil/deClock.c',
874 '<(deqp_dir)/framework/delibs/deutil/deCommandLine.c',
875 '<(deqp_dir)/framework/delibs/deutil/deDynamicLibrary.c',
876 '<(deqp_dir)/framework/delibs/deutil/deFile.c',
877 '<(deqp_dir)/framework/delibs/deutil/deProcess.c',
878 '<(deqp_dir)/framework/delibs/deutil/deSocket.c',
879 '<(deqp_dir)/framework/delibs/deutil/deTimer.c',
880 '<(deqp_dir)/framework/delibs/deutil/deTimerTest.c',
881 '<(deqp_dir)/framework/egl/egluCallLogWrapper.cpp',
882 '<(deqp_dir)/framework/egl/egluConfigFilter.cpp',
883 '<(deqp_dir)/framework/egl/egluConfigInfo.cpp',
884 '<(deqp_dir)/framework/egl/egluDefs.cpp',
885 '<(deqp_dir)/framework/egl/egluGLContextFactory.cpp',
886 '<(deqp_dir)/framework/egl/egluGLFunctionLoader.cpp',
887 '<(deqp_dir)/framework/egl/egluGLFunctionLoader.cpp',
888 '<(deqp_dir)/framework/egl/egluGLUtil.cpp',
889 '<(deqp_dir)/framework/egl/egluNativeDisplay.cpp',
890 '<(deqp_dir)/framework/egl/egluNativePixmap.cpp',
891 '<(deqp_dir)/framework/egl/egluNativeWindow.cpp',
892 '<(deqp_dir)/framework/egl/egluPlatform.cpp',
893 '<(deqp_dir)/framework/egl/egluStaticESLibrary.cpp',
894 '<(deqp_dir)/framework/egl/egluStrUtil.cpp',
895 '<(deqp_dir)/framework/egl/egluUnique.cpp',
896 '<(deqp_dir)/framework/egl/egluUtil.cpp',
897 '<(deqp_dir)/framework/egl/wrapper/eglwDefs.cpp',
898 '<(deqp_dir)/framework/egl/wrapper/eglwFunctions.cpp',
899 '<(deqp_dir)/framework/egl/wrapper/eglwLibrary.cpp',
900 '<(deqp_dir)/framework/opengl/gluCallLogWrapper.cpp',
901 '<(deqp_dir)/framework/opengl/gluContextFactory.cpp',
902 '<(deqp_dir)/framework/opengl/gluContextInfo.cpp',
903 '<(deqp_dir)/framework/opengl/gluDefs.cpp',
904 '<(deqp_dir)/framework/opengl/gluDrawUtil.cpp',
905 '<(deqp_dir)/framework/opengl/gluDummyRenderContext.cpp',
906 '<(deqp_dir)/framework/opengl/gluES3PlusWrapperContext.cpp',
907 '<(deqp_dir)/framework/opengl/gluFboRenderContext.cpp',
908 '<(deqp_dir)/framework/opengl/gluObjectWrapper.cpp',
909 '<(deqp_dir)/framework/opengl/gluPixelTransfer.cpp',
910 '<(deqp_dir)/framework/opengl/gluPlatform.cpp',
911 '<(deqp_dir)/framework/opengl/gluProgramInterfaceQuery.cpp',
912 '<(deqp_dir)/framework/opengl/gluRenderConfig.cpp',
913 '<(deqp_dir)/framework/opengl/gluRenderContext.cpp',
914 '<(deqp_dir)/framework/opengl/gluShaderProgram.cpp',
915 '<(deqp_dir)/framework/opengl/gluShaderUtil.cpp',
916 '<(deqp_dir)/framework/opengl/gluStateReset.cpp',
917 '<(deqp_dir)/framework/opengl/gluStrUtil.cpp',
918 '<(deqp_dir)/framework/opengl/gluTexture.cpp',
919 '<(deqp_dir)/framework/opengl/gluTextureUtil.cpp',
920 '<(deqp_dir)/framework/opengl/gluVarType.cpp',
921 '<(deqp_dir)/framework/opengl/gluVarTypeUtil.cpp',
922 '<(deqp_dir)/framework/opengl/simplereference/sglrContext.cpp',
923 '<(deqp_dir)/framework/opengl/simplereference/sglrContextUtil.cpp',
924 '<(deqp_dir)/framework/opengl/simplereference/sglrContextWrapper.cpp',
925 '<(deqp_dir)/framework/opengl/simplereference/sglrGLContext.cpp',
926 '<(deqp_dir)/framework/opengl/simplereference/sglrReferenceContext.cpp',
927 '<(deqp_dir)/framework/opengl/simplereference/sglrReferenceUtils.cpp',
928 '<(deqp_dir)/framework/opengl/simplereference/sglrShaderProgram.cpp',
929 '<(deqp_dir)/framework/opengl/wrapper/glwDefs.cpp',
930 '<(deqp_dir)/framework/opengl/wrapper/glwFunctions.cpp',
931 '<(deqp_dir)/framework/opengl/wrapper/glwInitES20Direct.cpp',
932 '<(deqp_dir)/framework/opengl/wrapper/glwInitES30Direct.cpp',
933 '<(deqp_dir)/framework/opengl/wrapper/glwInitFunctions.cpp',
934 '<(deqp_dir)/framework/opengl/wrapper/glwWrapper.cpp',
935 '<(deqp_dir)/framework/platform/tcuMain.cpp',
936 # TODO(jmadill): other platforms
937 '<(deqp_dir)/framework/platform/win32/tcuWin32Window.cpp',
938 '<(deqp_dir)/framework/qphelper/qpCrashHandler.c',
939 '<(deqp_dir)/framework/qphelper/qpDebugOut.c',
940 '<(deqp_dir)/framework/qphelper/qpInfo.c',
941 '<(deqp_dir)/framework/qphelper/qpTestLog.c',
942 '<(deqp_dir)/framework/qphelper/qpWatchDog.c',
943 '<(deqp_dir)/framework/qphelper/qpXmlWriter.c',
944 '<(deqp_dir)/framework/randomshaders/rsgBinaryOps.cpp',
945 '<(deqp_dir)/framework/randomshaders/rsgBuiltinFunctions.cpp',
946 '<(deqp_dir)/framework/randomshaders/rsgDefs.cpp',
947 '<(deqp_dir)/framework/randomshaders/rsgExecutionContext.cpp',
948 '<(deqp_dir)/framework/randomshaders/rsgExpression.cpp',
949 '<(deqp_dir)/framework/randomshaders/rsgExpressionGenerator.cpp',
950 '<(deqp_dir)/framework/randomshaders/rsgFunctionGenerator.cpp',
951 '<(deqp_dir)/framework/randomshaders/rsgGeneratorState.cpp',
952 '<(deqp_dir)/framework/randomshaders/rsgNameAllocator.cpp',
953 '<(deqp_dir)/framework/randomshaders/rsgParameters.cpp',
954 '<(deqp_dir)/framework/randomshaders/rsgPrettyPrinter.cpp',
955 '<(deqp_dir)/framework/randomshaders/rsgProgramExecutor.cpp',
956 '<(deqp_dir)/framework/randomshaders/rsgProgramGenerator.cpp',
957 '<(deqp_dir)/framework/randomshaders/rsgSamplers.cpp',
958 '<(deqp_dir)/framework/randomshaders/rsgShader.cpp',
959 '<(deqp_dir)/framework/randomshaders/rsgShaderGenerator.cpp',
960 '<(deqp_dir)/framework/randomshaders/rsgStatement.cpp',
961 '<(deqp_dir)/framework/randomshaders/rsgToken.cpp',
962 '<(deqp_dir)/framework/randomshaders/rsgUtils.cpp',
963 '<(deqp_dir)/framework/randomshaders/rsgVariable.cpp',
964 '<(deqp_dir)/framework/randomshaders/rsgVariableManager.cpp',
965 '<(deqp_dir)/framework/randomshaders/rsgVariableType.cpp',
966 '<(deqp_dir)/framework/randomshaders/rsgVariableValue.cpp',
967 '<(deqp_dir)/framework/referencerenderer/rrDefs.cpp',
968 '<(deqp_dir)/framework/referencerenderer/rrFragmentOperations.cpp',
969 '<(deqp_dir)/framework/referencerenderer/rrMultisamplePixelBufferAccess.cpp',
970 '<(deqp_dir)/framework/referencerenderer/rrPrimitivePacket.cpp',
971 '<(deqp_dir)/framework/referencerenderer/rrRasterizer.cpp',
972 '<(deqp_dir)/framework/referencerenderer/rrRenderer.cpp',
973 '<(deqp_dir)/framework/referencerenderer/rrShaders.cpp',
974 '<(deqp_dir)/framework/referencerenderer/rrShadingContext.cpp',
975 '<(deqp_dir)/framework/referencerenderer/rrVertexAttrib.cpp',
976 '<(deqp_dir)/framework/referencerenderer/rrVertexPacket.cpp',
977 '<(deqp_dir)/modules/glshared/glsAttributeLocationTests.cpp',
978 '<(deqp_dir)/modules/glshared/glsBufferTestUtil.cpp',
979 '<(deqp_dir)/modules/glshared/glsBuiltinPrecisionTests.cpp',
980 '<(deqp_dir)/modules/glshared/glsCalibration.cpp',
981 '<(deqp_dir)/modules/glshared/glsDrawTest.cpp',
982 '<(deqp_dir)/modules/glshared/glsFboCompletenessTests.cpp',
983 '<(deqp_dir)/modules/glshared/glsFboUtil.cpp',
984 '<(deqp_dir)/modules/glshared/glsFragmentOpUtil.cpp',
985 '<(deqp_dir)/modules/glshared/glsFragOpInteractionCase.cpp',
986 '<(deqp_dir)/modules/glshared/glsInteractionTestUtil.cpp',
987 '<(deqp_dir)/modules/glshared/glsLifetimeTests.cpp',
988 '<(deqp_dir)/modules/glshared/glsLongStressCase.cpp',
989 '<(deqp_dir)/modules/glshared/glsLongStressTestUtil.cpp',
990 '<(deqp_dir)/modules/glshared/glsMemoryStressCase.cpp',
991 '<(deqp_dir)/modules/glshared/glsRandomShaderCase.cpp',
992 '<(deqp_dir)/modules/glshared/glsRandomShaderProgram.cpp',
993 '<(deqp_dir)/modules/glshared/glsRandomUniformBlockCase.cpp',
994 '<(deqp_dir)/modules/glshared/glsRasterizationTestUtil.cpp',
995 '<(deqp_dir)/modules/glshared/glsSamplerObjectTest.cpp',
996 '<(deqp_dir)/modules/glshared/glsScissorTests.cpp',
997 '<(deqp_dir)/modules/glshared/glsShaderConstExprTests.cpp',
998 '<(deqp_dir)/modules/glshared/glsShaderExecUtil.cpp',
999 '<(deqp_dir)/modules/glshared/glsShaderLibraryCase.cpp',
1000 '<(deqp_dir)/modules/glshared/glsShaderLibrary.cpp',
1001 '<(deqp_dir)/modules/glshared/glsShaderPerformanceCase.cpp',
1002 '<(deqp_dir)/modules/glshared/glsShaderPerformanceMeasurer.cpp',
1003 '<(deqp_dir)/modules/glshared/glsShaderRenderCase.cpp',
1004 '<(deqp_dir)/modules/glshared/glsStateQueryUtil.cpp',
1005 '<(deqp_dir)/modules/glshared/glsStateChangePerfTestCases.cpp',
1006 '<(deqp_dir)/modules/glshared/glsTextureBufferCase.cpp',
1007 '<(deqp_dir)/modules/glshared/glsTextureStateQueryTests.cpp',
1008 '<(deqp_dir)/modules/glshared/glsTextureTestUtil.cpp',
1009 '<(deqp_dir)/modules/glshared/glsUniformBlockCase.cpp',
1010 '<(deqp_dir)/modules/glshared/glsVertexArrayTests.cpp',
1011 '<@(deqp_gles2_sources)',
1012 '<@(deqp_gles3_sources)',
1013 # TODO(jmadill): other platforms
1014 'deqp_support/angle_deqp_libtester_main.cpp',
1015 'deqp_support/tcuANGLEWin32NativeDisplayFactory.cpp',
1016 'deqp_support/tcuANGLEWin32Platform.cpp',
1017 ],
1018 },
1019
1020 {
1021 'target_name': 'angle_deqp_tests',
1022 'type': 'executable',
1023 'defines':
1024 [
1025 # Hard-code the path to dEQP. This lets the
1026 # app locate the data folder without need
1027 # for a copy. gyp recursive copies are not
1028 # implemented properly on Windows.
1029 'ANGLE_DEQP_DIR="<(DEPTH)/src/tests/<(deqp_dir)"',
1030 ],
1031 'dependencies':
1032 [
1033 'angle_deqp_libtester',
1034 ],
1035 'sources':
1036 [
1037 'deqp_support/angle_deqp_tests_main.cpp',
1038 ],
1039 },
1040 ], # targets
1041 }], # OS == "win"
1042 ], # conditions
1043 }], # angle_standalone
1044 ],
1045}