Revert of Add command_buffer_gles2 (patchset #14 id:310001 of https://codereview...
[chromium-blink-merge.git] / gpu / gpu.gyp
blob650db2a5f78eb5bd3918fedbf98870092d532b1f
1 # Copyright (c) 2012 The Chromium 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.
6   'variables': {
7     'nacl_win64_target': 0,
8   },
9   'includes': [
10     'gpu_common.gypi',
11   ],
12   'targets': [
13     {
14       # Library emulates GLES2 using command_buffers.
15       # GN version: //gpu/command_buffer/client:gles2_implementation
16       'target_name': 'gles2_implementation',
17       'type': '<(component)',
18       'dependencies': [
19         '../base/base.gyp:base',
20         '../third_party/khronos/khronos.gyp:khronos_headers',
21         '../ui/gfx/gfx.gyp:gfx_geometry',
22         '../ui/gl/gl.gyp:gl',
23         'command_buffer/command_buffer.gyp:gles2_utils',
24         'gles2_cmd_helper',
25       ],
26       'defines': [
27         'GLES2_IMPL_IMPLEMENTATION',
28       ],
29       'sources': [
30         '<@(gles2_implementation_source_files)',
31       ],
32       'includes': [
33         # Disable LTO due to ELF section name out of range
34         # crbug.com/422251
35         '../build/android/disable_gcc_lto.gypi',
36       ],
37       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
38       'msvs_disabled_warnings': [4267, ],
39     },
40     {
41       # GN version: //gpu/command_buffer/client:gl_in_process_context
42       'target_name': 'gl_in_process_context',
43       'type': '<(component)',
44       'dependencies': [
45         'command_buffer/command_buffer.gyp:gles2_utils',
46         'gles2_implementation',
47         'gpu',
48         '../base/base.gyp:base',
49         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
50         '../ui/gfx/gfx.gyp:gfx_geometry',
51         '../ui/gl/gl.gyp:gl',
52       ],
53       'defines': [
54         'GL_IN_PROCESS_CONTEXT_IMPLEMENTATION',
55       ],
56       'sources': [
57         'command_buffer/client/gl_in_process_context.cc',
58         'command_buffer/client/gl_in_process_context.h',
59         'command_buffer/client/gl_in_process_context_export.h',
60       ],
61     },
62     {
63       # Library emulates GLES2 using command_buffers.
64       'target_name': 'gles2_implementation_no_check',
65       'type': '<(component)',
66       'defines': [
67         'GLES2_IMPL_IMPLEMENTATION',
68         'GLES2_CONFORMANCE_TESTS=1',
69       ],
70       'dependencies': [
71         '../base/base.gyp:base',
72         '../third_party/khronos/khronos.gyp:khronos_headers',
73         '../ui/gfx/gfx.gyp:gfx',
74         '../ui/gfx/gfx.gyp:gfx_geometry',
75         'command_buffer/command_buffer.gyp:gles2_utils',
76         'gles2_cmd_helper',
77       ],
78       'sources': [
79         '<@(gles2_implementation_source_files)',
80       ],
81       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
82       'msvs_disabled_warnings': [ 4267, ],
83     },
84     {
85       # Stub to expose gles2_implemenation in C instead of C++.
86       # so GLES2 C programs can work with no changes.
87       # GN version: //gpu/command_buffer/client:gles2_c_lib
88       'target_name': 'gles2_c_lib',
89       'type': '<(component)',
90       'dependencies': [
91         '../base/base.gyp:base',
92         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
93         'command_buffer/command_buffer.gyp:gles2_utils',
94         'command_buffer_client',
95       ],
96       'defines': [
97         'GLES2_C_LIB_IMPLEMENTATION',
98       ],
99       'sources': [
100         '<@(gles2_c_lib_source_files)',
101       ],
102       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
103       'msvs_disabled_warnings': [4267, ],
104     },
105     {
106       # GN version: //gpu/command_buffer/client:gles2_c_lib_nocheck
107       # Same as gles2_c_lib except with no parameter checking. Required for
108       # OpenGL ES 2.0 conformance tests.
109       'target_name': 'gles2_c_lib_nocheck',
110       'type': '<(component)',
111       'defines': [
112         'GLES2_C_LIB_IMPLEMENTATION',
113         'GLES2_CONFORMANCE_TESTS=1',
114       ],
115       'dependencies': [
116         '../base/base.gyp:base',
117         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
118         'command_buffer/command_buffer.gyp:gles2_utils',
119         'command_buffer_client',
120         'gles2_implementation_no_check',
121       ],
122       'sources': [
123         '<@(gles2_c_lib_source_files)',
124       ],
125     },
126     {
127       # GN version: //gpu:angle_unittests
128       # TODO(kbr): port this refactoring to the GN build.
129       'target_name': 'angle_unittests',
130       'type': '<(gtest_target_type)',
131       'includes': [
132         '../third_party/angle/build/common_defines.gypi',
133         '../third_party/angle/src/tests/angle_unittests.gypi',
134       ],
135       'dependencies': [
136         '../base/base.gyp:base',
137         '../base/base.gyp:test_support_base',
138       ],
139       'include_dirs': [
140         '..',
141         '../third_party/angle/include',
142       ],
143       'sources': [
144         'angle_unittest_main.cc',
145       ],
146     },
147     {
148       # GN version: //gpu:gpu_unittests
149       'target_name': 'gpu_unittests',
150       'type': '<(gtest_target_type)',
151       'dependencies': [
152         '../base/base.gyp:base',
153         '../base/base.gyp:test_support_base',
154         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
155         '../testing/gmock.gyp:gmock',
156         '../testing/gtest.gyp:gtest',
157         '<(angle_path)/src/angle.gyp:translator',
158         '../ui/gfx/gfx.gyp:gfx',
159         '../ui/gfx/gfx.gyp:gfx_geometry',
160         '../ui/gfx/gfx.gyp:gfx_test_support',
161         '../ui/gl/gl.gyp:gl',
162         '../ui/gl/gl.gyp:gl_test_support',
163         'command_buffer/command_buffer.gyp:gles2_utils',
164         'command_buffer_client',
165         'command_buffer_common',
166         'command_buffer_service',
167         'gpu',
168         'gpu_unittest_utils',
169         'gles2_implementation',
170         'gles2_cmd_helper',
171         'gles2_c_lib',
172       ],
173       'sources': [
174         # Note: sources list duplicated in GN build.
175         'command_buffer/client/buffer_tracker_unittest.cc',
176         'command_buffer/client/client_test_helper.cc',
177         'command_buffer/client/client_test_helper.h',
178         'command_buffer/client/cmd_buffer_helper_test.cc',
179         'command_buffer/client/fenced_allocator_test.cc',
180         'command_buffer/client/gles2_implementation_unittest.cc',
181         'command_buffer/client/mapped_memory_unittest.cc',
182         'command_buffer/client/program_info_manager_unittest.cc',
183         'command_buffer/client/query_tracker_unittest.cc',
184         'command_buffer/client/ring_buffer_test.cc',
185         'command_buffer/client/transfer_buffer_unittest.cc',
186         'command_buffer/client/vertex_array_object_manager_unittest.cc',
187         'command_buffer/common/bitfield_helpers_test.cc',
188         'command_buffer/common/command_buffer_mock.cc',
189         'command_buffer/common/command_buffer_mock.h',
190         'command_buffer/common/command_buffer_shared_test.cc',
191         'command_buffer/common/debug_marker_manager_unittest.cc',
192         'command_buffer/common/gles2_cmd_format_test.cc',
193         'command_buffer/common/gles2_cmd_format_test_autogen.h',
194         'command_buffer/common/gles2_cmd_utils_unittest.cc',
195         'command_buffer/common/id_allocator_test.cc',
196         'command_buffer/common/trace_event.h',
197         'command_buffer/common/unittest_main.cc',
198         'command_buffer/service/buffer_manager_unittest.cc',
199         'command_buffer/service/cmd_parser_test.cc',
200         'command_buffer/service/command_buffer_service_unittest.cc',
201         'command_buffer/service/common_decoder_unittest.cc',
202         'command_buffer/service/context_group_unittest.cc',
203         'command_buffer/service/context_state_unittest.cc',
204         'command_buffer/service/feature_info_unittest.cc',
205         'command_buffer/service/framebuffer_manager_unittest.cc',
206         'command_buffer/service/gl_context_mock.cc',
207         'command_buffer/service/gl_context_mock.h',
208         'command_buffer/service/gl_surface_mock.cc',
209         'command_buffer/service/gl_surface_mock.h',
210         'command_buffer/service/gles2_cmd_decoder_unittest.cc',
211         'command_buffer/service/gles2_cmd_decoder_unittest.h',
212         'command_buffer/service/gles2_cmd_decoder_unittest_0_autogen.h',
213         'command_buffer/service/gles2_cmd_decoder_unittest_1.cc',
214         'command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h',
215         'command_buffer/service/gles2_cmd_decoder_unittest_2.cc',
216         'command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h',
217         'command_buffer/service/gles2_cmd_decoder_unittest_3.cc',
218         'command_buffer/service/gles2_cmd_decoder_unittest_3_autogen.h',
219         'command_buffer/service/gles2_cmd_decoder_unittest_attribs.cc',
220         'command_buffer/service/gles2_cmd_decoder_unittest_base.cc',
221         'command_buffer/service/gles2_cmd_decoder_unittest_base.h',
222         'command_buffer/service/gles2_cmd_decoder_unittest_buffers.cc',
223         'command_buffer/service/gles2_cmd_decoder_unittest_context_lost.cc',
224         'command_buffer/service/gles2_cmd_decoder_unittest_context_state.cc',
225         'command_buffer/service/gles2_cmd_decoder_unittest_drawing.cc',
226         'command_buffer/service/gles2_cmd_decoder_unittest_extensions.cc',
227         'command_buffer/service/gles2_cmd_decoder_unittest_extensions_autogen.h',
228         'command_buffer/service/gles2_cmd_decoder_unittest_framebuffers.cc',
229         'command_buffer/service/gles2_cmd_decoder_unittest_programs.cc',
230         'command_buffer/service/gles2_cmd_decoder_unittest_textures.cc',
231         'command_buffer/service/gles2_cmd_decoder_unittest_valuebuffer.cc',
232         'command_buffer/service/gpu_scheduler_unittest.cc',
233         'command_buffer/service/gpu_service_test.cc',
234         'command_buffer/service/gpu_service_test.h',
235         'command_buffer/service/gpu_tracer_unittest.cc',
236         'command_buffer/service/id_manager_unittest.cc',
237         'command_buffer/service/mailbox_manager_unittest.cc',
238         'command_buffer/service/memory_program_cache_unittest.cc',
239         'command_buffer/service/mocks.cc',
240         'command_buffer/service/mocks.h',
241         'command_buffer/service/program_cache_unittest.cc',
242         'command_buffer/service/program_manager_unittest.cc',
243         'command_buffer/service/query_manager_unittest.cc',
244         'command_buffer/service/renderbuffer_manager_unittest.cc',
245         'command_buffer/service/shader_manager_unittest.cc',
246         'command_buffer/service/shader_translator_cache_unittest.cc',
247         'command_buffer/service/shader_translator_unittest.cc',
248         'command_buffer/service/test_helper.cc',
249         'command_buffer/service/test_helper.h',
250         'command_buffer/service/path_manager_unittest.cc',
251         'command_buffer/service/texture_manager_unittest.cc',
252         'command_buffer/service/transfer_buffer_manager_unittest.cc',
253         'command_buffer/service/valuebuffer_manager_unittest.cc',
254         'command_buffer/service/vertex_array_manager_unittest.cc',
255         'command_buffer/service/vertex_attrib_manager_unittest.cc',
256         'config/gpu_blacklist_unittest.cc',
257         'config/gpu_control_list_entry_unittest.cc',
258         'config/gpu_control_list_number_info_unittest.cc',
259         'config/gpu_control_list_os_info_unittest.cc',
260         'config/gpu_control_list_unittest.cc',
261         'config/gpu_control_list_version_info_unittest.cc',
262         'config/gpu_driver_bug_list_unittest.cc',
263         'config/gpu_info_collector_unittest.cc',
264         'config/gpu_info_unittest.cc',
265         'config/gpu_test_config_unittest.cc',
266         'config/gpu_test_expectations_parser_unittest.cc',
267         'config/gpu_util_unittest.cc',
268       ],
269       'conditions': [
270         ['OS == "android"', {
271           'dependencies': [
272             '../testing/android/native_test.gyp:native_test_native_code',
273           ],
274         }],
275         # See http://crbug.com/162998#c4 for why this is needed.
276         ['OS=="linux" and use_allocator!="none"', {
277           'dependencies': [
278             '../base/allocator/allocator.gyp:allocator',
279           ],
280         }],
281       ],
282       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
283       'msvs_disabled_warnings': [ 4267, ],
284     },
285     {
286       # GN version: //gpu/gpu_perftests
287       'target_name': 'gpu_perftests',
288       'type': '<(gtest_target_type)',
289       'dependencies': [
290         '../base/base.gyp:base',
291         '../base/base.gyp:test_support_base',
292         '../testing/gmock.gyp:gmock',
293         '../testing/gtest.gyp:gtest',
294         '../testing/perf/perf_test.gyp:perf_test',
295         '../ui/gfx/gfx.gyp:gfx_geometry',
296         '../ui/gl/gl.gyp:gl',
297         'command_buffer_service',
298       ],
299       'sources': [
300         'perftests/measurements.cc',
301         'perftests/run_all_tests.cc',
302         'perftests/texture_upload_perftest.cc',
303       ],
304       'conditions': [
305         ['OS == "android"',
306           {
307             'dependencies': [
308               '../testing/android/native_test.gyp:native_test_native_code',
309             ],
310           }
311         ],
312         # See http://crbug.com/162998#c4 for why this is needed.
313         ['OS=="linux" and use_allocator!="none"',
314           {
315             'dependencies': [
316               '../base/allocator/allocator.gyp:allocator',
317             ],
318           }
319         ],
320       ],
321     },
322     {
323       # GN version: //gpu:gl_tests
324       'target_name': 'gl_tests',
325       'type': '<(gtest_target_type)',
326       'dependencies': [
327         '../base/base.gyp:base',
328         '../base/base.gyp:test_support_base',
329         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
330         '../testing/gmock.gyp:gmock',
331         '../testing/gtest.gyp:gtest',
332         '<(angle_path)/src/angle.gyp:translator',
333         '../ui/gfx/gfx.gyp:gfx',
334         '../ui/gfx/gfx.gyp:gfx_test_support',
335         '../ui/gfx/gfx.gyp:gfx_geometry',
336         '../ui/gl/gl.gyp:gl',
337         'command_buffer/command_buffer.gyp:gles2_utils',
338         'command_buffer_client',
339         'command_buffer_common',
340         'command_buffer_service',
341         'gpu',
342         'gpu_unittest_utils',
343         'gles2_implementation',
344         'gles2_cmd_helper',
345         'gles2_c_lib',
346         #'gl_unittests',
347       ],
348       'defines': [
349         'GL_GLEXT_PROTOTYPES',
350       ],
351       'sources': [
352         # Note: sources list duplicated in GN build.
353         'command_buffer/tests/compressed_texture_test.cc',
354         'command_buffer/tests/gl_bind_uniform_location_unittest.cc',
355         'command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc',
356         'command_buffer/tests/gl_chromium_path_rendering_unittest.cc',
357         'command_buffer/tests/gl_clear_framebuffer_unittest.cc',
358         'command_buffer/tests/gl_compressed_copy_texture_CHROMIUM_unittest.cc',
359         'command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc',
360         'command_buffer/tests/gl_cube_map_texture_unittest.cc',
361         'command_buffer/tests/gl_depth_texture_unittest.cc',
362         'command_buffer/tests/gl_gpu_memory_buffer_unittest.cc',
363         'command_buffer/tests/gl_lose_context_chromium_unittest.cc',
364         'command_buffer/tests/gl_manager.cc',
365         'command_buffer/tests/gl_manager.h',
366         'command_buffer/tests/gl_pointcoord_unittest.cc',
367         'command_buffer/tests/gl_program_unittest.cc',
368         'command_buffer/tests/gl_query_unittest.cc',
369         'command_buffer/tests/gl_readback_unittest.cc',
370         'command_buffer/tests/gl_shared_resources_unittest.cc',
371         'command_buffer/tests/gl_stream_draw_unittest.cc',
372         'command_buffer/tests/gl_test_utils.cc',
373         'command_buffer/tests/gl_test_utils.h',
374         'command_buffer/tests/gl_tests_main.cc',
375         'command_buffer/tests/gl_texture_mailbox_unittest.cc',
376         'command_buffer/tests/gl_texture_storage_unittest.cc',
377         'command_buffer/tests/gl_unittest.cc',
378         'command_buffer/tests/gl_unittests_android.cc',
379         'command_buffer/tests/gl_virtual_contexts_unittest.cc',
380         'command_buffer/tests/occlusion_query_unittest.cc',
381       ],
382       'conditions': [
383         ['OS == "android"', {
384           'dependencies': [
385             '../testing/android/native_test.gyp:native_test_native_code',
386           ],
387         }],
388         ['OS == "win"', {
389           'dependencies': [
390             '../third_party/angle/src/angle.gyp:libEGL',
391             '../third_party/angle/src/angle.gyp:libGLESv2',
392           ],
393         }],
394       ],
395       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
396       'msvs_disabled_warnings': [ 4267, ],
397     },
398     {
399       # GN version: //gpu:test_support
400       'target_name': 'gpu_unittest_utils',
401       'type': 'static_library',
402       'dependencies': [
403         '../testing/gmock.gyp:gmock',
404         '../testing/gtest.gyp:gtest',
405         '../third_party/khronos/khronos.gyp:khronos_headers',
406         '../ui/gl/gl.gyp:gl_unittest_utils',
407         'gpu',
408       ],
409       'include_dirs': [
410         '..',
411       ],
412       'sources': [
413         'command_buffer/client/gles2_interface_stub.cc',
414         'command_buffer/client/gles2_interface_stub.h',
415         'command_buffer/service/error_state_mock.cc',
416         'command_buffer/service/gles2_cmd_decoder_mock.cc',
417       ],
418     },
419   ],
420   'conditions': [
421     ['component=="static_library"', {
422       'targets': [
423          {
424           # GN version: //gpu/command_buffer/service:disk_cache_proto
425           'target_name': 'disk_cache_proto',
426           'type': 'static_library',
427           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
428           'variables': {
429             'proto_in_dir': 'command_buffer/service',
430             'proto_out_dir': 'gpu/command_buffer/service',
431           },
432           'includes': [ '../build/protoc.gypi' ],
433         },
434         {
435           # GN version: //gpu
436           'target_name': 'gpu',
437           'type': 'none',
438           'dependencies': [
439             'command_buffer_client',
440             'command_buffer_common',
441             'command_buffer_service',
442             'gles2_cmd_helper',
443             'gpu_config',
444             'gpu_ipc',
445           ],
446           'sources': [
447             'gpu_export.h',
448           ],
449           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
450           'msvs_disabled_warnings': [4267, ],
451         },
452         {
453           # GN version: //gpu/command_buffer/common
454           'target_name': 'command_buffer_common',
455           'type': 'static_library',
456           'includes': [
457             'command_buffer_common.gypi',
458           ],
459           'dependencies': [
460             '../base/base.gyp:base',
461             'command_buffer/command_buffer.gyp:gles2_utils',
462           ],
463           'export_dependent_settings': [
464             '../base/base.gyp:base',
465           ],
466         },
467         {
468           # Library helps make GLES2 command buffers.
469           # GN version: //gpu/command_buffer/client:gles2_cmd_helper
470           'target_name': 'gles2_cmd_helper',
471           'type': 'static_library',
472           'includes': [
473             'gles2_cmd_helper.gypi',
474           ],
475           'dependencies': [
476             'command_buffer_client',
477           ],
478           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
479           'msvs_disabled_warnings': [4267, ],
480         },
481         {
482           # GN version: //gpu/command_buffer/client
483           'target_name': 'command_buffer_client',
484           'type': 'static_library',
485           'includes': [
486             'command_buffer_client.gypi',
487           ],
488           'dependencies': [
489             'command_buffer_common',
490           ],
491           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
492           'msvs_disabled_warnings': [4267, ],
493         },
494         {
495           # GN version: //gpu/command_buffer/service
496           'target_name': 'command_buffer_service',
497           'type': 'static_library',
498           'includes': [
499             'command_buffer_service.gypi',
500             '../build/android/increase_size_for_speed.gypi',
501             # Disable LTO due to ELF section name out of range
502             # crbug.com/422251
503             '../build/android/disable_gcc_lto.gypi',
504           ],
505           'dependencies': [
506             'command_buffer_common',
507             'disk_cache_proto',
508             'gpu_config',
509           ],
510           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
511           'msvs_disabled_warnings': [4267, ],
512         },
513         {
514           # GN version: //gpu/ipc
515           'target_name': 'gpu_ipc',
516           'type': 'static_library',
517           'includes': [
518             'gpu_ipc.gypi',
519           ],
520           'dependencies': [
521             'command_buffer_common',
522           ],
523         },
524         {
525           'target_name': 'gpu_config',
526           'type': 'static_library',
527           'includes': [
528             'gpu_config.gypi',
529           ],
530         },
531       ],
532     },
533     { # component != static_library
534       'targets': [
535          {
536           # GN version: //gpu/command_buffer/service:disk_cache_proto
537           'target_name': 'disk_cache_proto',
538           'type': 'static_library',
539           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
540           'variables': {
541             'proto_in_dir': 'command_buffer/service',
542             'proto_out_dir': 'gpu/command_buffer/service',
543           },
544           'includes': [ '../build/protoc.gypi' ],
545         },
546         {
547           # GN version: //gpu
548           'target_name': 'gpu',
549           'type': 'shared_library',
550           'includes': [
551             'command_buffer_client.gypi',
552             'command_buffer_common.gypi',
553             'command_buffer_service.gypi',
554             'gles2_cmd_helper.gypi',
555             'gpu_config.gypi',
556             'gpu_ipc.gypi',
557             '../build/android/increase_size_for_speed.gypi',
558           ],
559           'defines': [
560             'GPU_IMPLEMENTATION',
561           ],
562           'sources': [
563             'gpu_export.h',
564           ],
565           'dependencies': [
566             '../base/base.gyp:base',
567             'command_buffer/command_buffer.gyp:gles2_utils',
568             'disk_cache_proto',
569           ],
570           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
571           'msvs_disabled_warnings': [4267, ],
572         },
573         {
574           # GN version: //gpu/command_buffer/common
575           'target_name': 'command_buffer_common',
576           'type': 'none',
577           'dependencies': [
578             'gpu',
579           ],
580         },
581         {
582           # Library helps make GLES2 command buffers.
583           # GN version: //gpu/command_buffer/client:gles2_cmd_helper
584           'target_name': 'gles2_cmd_helper',
585           'type': 'none',
586           'dependencies': [
587             'gpu',
588           ],
589           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
590           'msvs_disabled_warnings': [4267, ],
591         },
592         {
593           # GN version: //gpu/command_buffer/client
594           'target_name': 'command_buffer_client',
595           'type': 'none',
596           'dependencies': [
597             'gpu',
598           ],
599         },
600         {
601           # GN version: //gpu/command_buffer/service
602           'target_name': 'command_buffer_service',
603           'type': 'none',
604           'dependencies': [
605             'gpu',
606           ],
607         },
608         {
609           # GN version: //gpu/ipc
610           'target_name': 'gpu_ipc',
611           'type': 'none',
612           'dependencies': [
613             'gpu',
614           ],
615         },
616       ],
617     }],
618     ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
619       'targets': [
620         {
621           'target_name': 'command_buffer_common_win64',
622           'type': 'static_library',
623           'variables': {
624             'nacl_win64_target': 1,
625           },
626           'includes': [
627             'command_buffer_common.gypi',
628           ],
629           'dependencies': [
630             '../base/base.gyp:base_win64',
631           ],
632           'defines': [
633             '<@(nacl_win64_defines)',
634             'GPU_IMPLEMENTATION',
635           ],
636           'configurations': {
637             'Common_Base': {
638               'msvs_target_platform': 'x64',
639             },
640           },
641         },
642         {
643           'target_name': 'gpu_ipc_win64',
644           'type': 'static_library',
645           'variables': {
646             'nacl_win64_target': 1,
647           },
648           'includes': [
649             'gpu_ipc.gypi',
650           ],
651           'dependencies': [
652             '../base/base.gyp:base_win64',
653             '../ipc/ipc.gyp:ipc_win64',
654             'command_buffer_common_win64',
655           ],
656           'defines': [
657             '<@(nacl_win64_defines)',
658             'GPU_IMPLEMENTATION',
659           ],
660           'configurations': {
661             'Common_Base': {
662               'msvs_target_platform': 'x64',
663             },
664           },
665         },
666       ],
667     }],
668     ['OS == "android"', {
669       'targets': [
670         {
671           'target_name': 'gl_tests_apk',
672           'type': 'none',
673           'dependencies': [
674             'gl_tests',
675           ],
676           'variables': {
677             'test_suite_name': 'gl_tests',
678           },
679           'includes': [
680             '../build/apk_test.gypi',
681           ],
682         },
683         {
684           'target_name': 'gpu_unittests_apk',
685           'type': 'none',
686           'dependencies': [
687             'gpu_unittests',
688           ],
689           'variables': {
690             'test_suite_name': 'gpu_unittests',
691           },
692           'includes': [ '../build/apk_test.gypi' ],
693         },
694         {
695           'target_name': 'gpu_perftests_apk',
696           'type': 'none',
697           'dependencies': [
698             'gpu_perftests',
699           ],
700           'variables': {
701             'test_suite_name': 'gpu_perftests',
702           },
703           'includes': [ '../build/apk_test.gypi' ],
704         },
705       ],
706     }],
707     ['OS == "win" or (OS == "linux" and use_x11==1)', {
708       'targets': [
709         {
710           # TODO(crbug.com/519834): port this target to the GN build.
711           'target_name': 'angle_end2end_tests',
712           'type': '<(gtest_target_type)',
713           'dependencies': [
714             '../base/base.gyp:base',
715             '../base/base.gyp:test_support_base',
716           ],
717           'includes': [
718             '../third_party/angle/build/common_defines.gypi',
719             '../third_party/angle/src/tests/angle_end2end_tests.gypi',
720           ],
721           'sources': [
722             'angle_end2end_tests_main.cc',
723           ],
724         },
725       ],
726     }],
727     ['OS == "win"', {
728       'targets': [
729         {
730           # TODO(jmadill): port this target to the GN build.
731           'target_name': 'angle_perftests',
732           'type': '<(gtest_target_type)',
733           'dependencies': [
734             '../base/base.gyp:base',
735             '../base/base.gyp:test_support_base',
736           ],
737           'includes': [
738             '../third_party/angle/build/common_defines.gypi',
739             '../third_party/angle/src/tests/angle_perftests.gypi',
740           ],
741           'sources': [
742             'angle_perftests_main.cc',
743           ],
744         },
745       ],
746     }],
747     ['test_isolation_mode != "noop"', {
748       'targets': [
749         {
750           'target_name': 'gpu_unittests_run',
751           'type': 'none',
752           'dependencies': [
753             'gpu_unittests',
754           ],
755           'includes': [
756             '../build/isolate.gypi',
757           ],
758           'sources': [
759             'gpu_unittests.isolate',
760           ],
761           'conditions': [
762             ['use_x11==1',
763               {
764                 'dependencies': [
765                   '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
766                 ],
767               }
768             ],
769           ],
770         },
771       ],
772     }],
773     ['(OS == "win" or OS == "linux") and archive_gpu_tests==1', {
774       'targets': [
775         {
776           # Only build dEQP on test configs. Note that dEQP is test-only code,
777           # and is only a part of the Chromium build to allow easy integration
778           # with the GPU bot waterfall. (Note that dEQP uses exceptions, and
779           # currently can't build with Clang on Windows)
780           'target_name': 'angle_deqp_gles2_tests',
781           'type': '<(gtest_target_type)',
782           'dependencies': [
783             '../base/base.gyp:base',
784             '../base/base.gyp:test_support_base',
785             '../third_party/angle/src/tests/tests.gyp:angle_deqp_gtest_support',
786             '../third_party/angle/src/tests/tests.gyp:angle_deqp_libgles2',
787           ],
788           'includes': [
789             '../third_party/angle/build/common_defines.gypi',
790           ],
791           'sources': [
792             'angle_deqp_tests_main.cc',
793           ],
794         },
795         {
796           'target_name': 'angle_deqp_gles3_tests',
797           'type': '<(gtest_target_type)',
798           'dependencies': [
799             '../base/base.gyp:base',
800             '../base/base.gyp:test_support_base',
801             '../third_party/angle/src/tests/tests.gyp:angle_deqp_gtest_support',
802             '../third_party/angle/src/tests/tests.gyp:angle_deqp_libgles3',
803           ],
804           'includes': [
805             '../third_party/angle/build/common_defines.gypi',
806           ],
807           'sources': [
808             'angle_deqp_tests_main.cc',
809           ],
810         },
811       ],
812     }]
813   ],