Rename CoalescedPermissionMessage to PermissionMessage
[chromium-blink-merge.git] / gpu / gpu.gyp
blob225d5fabfa98486704915b2d8163c50c73d4b522
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_depth_texture_unittest.cc',
361         'command_buffer/tests/gl_gpu_memory_buffer_unittest.cc',
362         'command_buffer/tests/gl_lose_context_chromium_unittest.cc',
363         'command_buffer/tests/gl_manager.cc',
364         'command_buffer/tests/gl_manager.h',
365         'command_buffer/tests/gl_pointcoord_unittest.cc',
366         'command_buffer/tests/gl_program_unittest.cc',
367         'command_buffer/tests/gl_query_unittest.cc',
368         'command_buffer/tests/gl_readback_unittest.cc',
369         'command_buffer/tests/gl_shared_resources_unittest.cc',
370         'command_buffer/tests/gl_stream_draw_unittest.cc',
371         'command_buffer/tests/gl_test_utils.cc',
372         'command_buffer/tests/gl_test_utils.h',
373         'command_buffer/tests/gl_tests_main.cc',
374         'command_buffer/tests/gl_texture_mailbox_unittest.cc',
375         'command_buffer/tests/gl_texture_storage_unittest.cc',
376         'command_buffer/tests/gl_unittest.cc',
377         'command_buffer/tests/gl_unittests_android.cc',
378         'command_buffer/tests/gl_virtual_contexts_unittest.cc',
379         'command_buffer/tests/occlusion_query_unittest.cc',
380       ],
381       'conditions': [
382         ['OS == "android"', {
383           'dependencies': [
384             '../testing/android/native_test.gyp:native_test_native_code',
385           ],
386         }],
387         ['OS == "win"', {
388           'dependencies': [
389             '../third_party/angle/src/angle.gyp:libEGL',
390             '../third_party/angle/src/angle.gyp:libGLESv2',
391           ],
392         }],
393       ],
394       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
395       'msvs_disabled_warnings': [ 4267, ],
396     },
397     {
398       # GN version: //gpu:test_support
399       'target_name': 'gpu_unittest_utils',
400       'type': 'static_library',
401       'dependencies': [
402         '../testing/gmock.gyp:gmock',
403         '../testing/gtest.gyp:gtest',
404         '../third_party/khronos/khronos.gyp:khronos_headers',
405         '../ui/gl/gl.gyp:gl_unittest_utils',
406         'gpu',
407       ],
408       'include_dirs': [
409         '..',
410       ],
411       'sources': [
412         'command_buffer/client/gles2_interface_stub.cc',
413         'command_buffer/client/gles2_interface_stub.h',
414         'command_buffer/service/error_state_mock.cc',
415         'command_buffer/service/gles2_cmd_decoder_mock.cc',
416       ],
417     },
418   ],
419   'conditions': [
420     ['component=="static_library"', {
421       'targets': [
422          {
423           # GN version: //gpu/command_buffer/service:disk_cache_proto
424           'target_name': 'disk_cache_proto',
425           'type': 'static_library',
426           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
427           'variables': {
428             'proto_in_dir': 'command_buffer/service',
429             'proto_out_dir': 'gpu/command_buffer/service',
430           },
431           'includes': [ '../build/protoc.gypi' ],
432         },
433         {
434           # GN version: //gpu
435           'target_name': 'gpu',
436           'type': 'none',
437           'dependencies': [
438             'command_buffer_client',
439             'command_buffer_common',
440             'command_buffer_service',
441             'gles2_cmd_helper',
442             'gpu_config',
443             'gpu_ipc',
444           ],
445           'sources': [
446             'gpu_export.h',
447           ],
448           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
449           'msvs_disabled_warnings': [4267, ],
450         },
451         {
452           # GN version: //gpu/command_buffer/common
453           'target_name': 'command_buffer_common',
454           'type': 'static_library',
455           'includes': [
456             'command_buffer_common.gypi',
457           ],
458           'dependencies': [
459             '../base/base.gyp:base',
460             'command_buffer/command_buffer.gyp:gles2_utils',
461           ],
462           'export_dependent_settings': [
463             '../base/base.gyp:base',
464           ],
465         },
466         {
467           # Library helps make GLES2 command buffers.
468           # GN version: //gpu/command_buffer/client:gles2_cmd_helper
469           'target_name': 'gles2_cmd_helper',
470           'type': 'static_library',
471           'includes': [
472             'gles2_cmd_helper.gypi',
473           ],
474           'dependencies': [
475             'command_buffer_client',
476           ],
477           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
478           'msvs_disabled_warnings': [4267, ],
479         },
480         {
481           # GN version: //gpu/command_buffer/client
482           'target_name': 'command_buffer_client',
483           'type': 'static_library',
484           'includes': [
485             'command_buffer_client.gypi',
486           ],
487           'dependencies': [
488             'command_buffer_common',
489           ],
490           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
491           'msvs_disabled_warnings': [4267, ],
492         },
493         {
494           # GN version: //gpu/command_buffer/service
495           'target_name': 'command_buffer_service',
496           'type': 'static_library',
497           'includes': [
498             'command_buffer_service.gypi',
499             '../build/android/increase_size_for_speed.gypi',
500             # Disable LTO due to ELF section name out of range
501             # crbug.com/422251
502             '../build/android/disable_gcc_lto.gypi',
503           ],
504           'dependencies': [
505             'command_buffer_common',
506             'disk_cache_proto',
507             'gpu_config',
508           ],
509           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
510           'msvs_disabled_warnings': [4267, ],
511         },
512         {
513           # GN version: //gpu/ipc
514           'target_name': 'gpu_ipc',
515           'type': 'static_library',
516           'includes': [
517             'gpu_ipc.gypi',
518           ],
519           'dependencies': [
520             'command_buffer_common',
521           ],
522         },
523         {
524           'target_name': 'gpu_config',
525           'type': 'static_library',
526           'includes': [
527             'gpu_config.gypi',
528           ],
529         },
530       ],
531     },
532     { # component != static_library
533       'targets': [
534          {
535           # GN version: //gpu/command_buffer/service:disk_cache_proto
536           'target_name': 'disk_cache_proto',
537           'type': 'static_library',
538           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
539           'variables': {
540             'proto_in_dir': 'command_buffer/service',
541             'proto_out_dir': 'gpu/command_buffer/service',
542           },
543           'includes': [ '../build/protoc.gypi' ],
544         },
545         {
546           # GN version: //gpu
547           'target_name': 'gpu',
548           'type': 'shared_library',
549           'includes': [
550             'command_buffer_client.gypi',
551             'command_buffer_common.gypi',
552             'command_buffer_service.gypi',
553             'gles2_cmd_helper.gypi',
554             'gpu_config.gypi',
555             'gpu_ipc.gypi',
556             '../build/android/increase_size_for_speed.gypi',
557           ],
558           'defines': [
559             'GPU_IMPLEMENTATION',
560           ],
561           'sources': [
562             'gpu_export.h',
563           ],
564           'dependencies': [
565             '../base/base.gyp:base',
566             'command_buffer/command_buffer.gyp:gles2_utils',
567             'disk_cache_proto',
568           ],
569           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
570           'msvs_disabled_warnings': [4267, ],
571         },
572         {
573           # GN version: //gpu/command_buffer/common
574           'target_name': 'command_buffer_common',
575           'type': 'none',
576           'dependencies': [
577             'gpu',
578           ],
579         },
580         {
581           # Library helps make GLES2 command buffers.
582           # GN version: //gpu/command_buffer/client:gles2_cmd_helper
583           'target_name': 'gles2_cmd_helper',
584           'type': 'none',
585           'dependencies': [
586             'gpu',
587           ],
588           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
589           'msvs_disabled_warnings': [4267, ],
590         },
591         {
592           # GN version: //gpu/command_buffer/client
593           'target_name': 'command_buffer_client',
594           'type': 'none',
595           'dependencies': [
596             'gpu',
597           ],
598         },
599         {
600           # GN version: //gpu/command_buffer/service
601           'target_name': 'command_buffer_service',
602           'type': 'none',
603           'dependencies': [
604             'gpu',
605           ],
606         },
607         {
608           # GN version: //gpu/ipc
609           'target_name': 'gpu_ipc',
610           'type': 'none',
611           'dependencies': [
612             'gpu',
613           ],
614         },
615       ],
616     }],
617     ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
618       'targets': [
619         {
620           'target_name': 'command_buffer_common_win64',
621           'type': 'static_library',
622           'variables': {
623             'nacl_win64_target': 1,
624           },
625           'includes': [
626             'command_buffer_common.gypi',
627           ],
628           'dependencies': [
629             '../base/base.gyp:base_win64',
630           ],
631           'defines': [
632             '<@(nacl_win64_defines)',
633             'GPU_IMPLEMENTATION',
634           ],
635           'configurations': {
636             'Common_Base': {
637               'msvs_target_platform': 'x64',
638             },
639           },
640         },
641         {
642           'target_name': 'gpu_ipc_win64',
643           'type': 'static_library',
644           'variables': {
645             'nacl_win64_target': 1,
646           },
647           'includes': [
648             'gpu_ipc.gypi',
649           ],
650           'dependencies': [
651             '../base/base.gyp:base_win64',
652             '../ipc/ipc.gyp:ipc_win64',
653             'command_buffer_common_win64',
654           ],
655           'defines': [
656             '<@(nacl_win64_defines)',
657             'GPU_IMPLEMENTATION',
658           ],
659           'configurations': {
660             'Common_Base': {
661               'msvs_target_platform': 'x64',
662             },
663           },
664         },
665       ],
666     }],
667     ['OS == "android"', {
668       'targets': [
669         {
670           'target_name': 'gl_tests_apk',
671           'type': 'none',
672           'dependencies': [
673             'gl_tests',
674           ],
675           'variables': {
676             'test_suite_name': 'gl_tests',
677           },
678           'includes': [
679             '../build/apk_test.gypi',
680           ],
681         },
682         {
683           'target_name': 'gpu_unittests_apk',
684           'type': 'none',
685           'dependencies': [
686             'gpu_unittests',
687           ],
688           'variables': {
689             'test_suite_name': 'gpu_unittests',
690           },
691           'includes': [ '../build/apk_test.gypi' ],
692         },
693         {
694           'target_name': 'gpu_perftests_apk',
695           'type': 'none',
696           'dependencies': [
697             'gpu_perftests',
698           ],
699           'variables': {
700             'test_suite_name': 'gpu_perftests',
701           },
702           'includes': [ '../build/apk_test.gypi' ],
703         },
704       ],
705     }],
706     ['OS == "win" or (OS == "linux" and use_x11==1)', {
707       'targets': [
708         {
709           # TODO(crbug.com/519834): port this target to the GN build.
710           'target_name': 'angle_end2end_tests',
711           'type': '<(gtest_target_type)',
712           'dependencies': [
713             '../base/base.gyp:base',
714             '../base/base.gyp:test_support_base',
715           ],
716           'includes': [
717             '../third_party/angle/build/common_defines.gypi',
718             '../third_party/angle/src/tests/angle_end2end_tests.gypi',
719           ],
720           'sources': [
721             'angle_end2end_tests_main.cc',
722           ],
723         },
724       ],
725     }],
726     ['OS == "win"', {
727       'targets': [
728         {
729           # TODO(jmadill): port this target to the GN build.
730           'target_name': 'angle_perftests',
731           'type': '<(gtest_target_type)',
732           'dependencies': [
733             '../base/base.gyp:base',
734             '../base/base.gyp:test_support_base',
735           ],
736           'includes': [
737             '../third_party/angle/build/common_defines.gypi',
738             '../third_party/angle/src/tests/angle_perftests.gypi',
739           ],
740           'sources': [
741             'angle_perftests_main.cc',
742           ],
743         },
744       ],
745     }],
746     ['test_isolation_mode != "noop"', {
747       'targets': [
748         {
749           'target_name': 'gpu_unittests_run',
750           'type': 'none',
751           'dependencies': [
752             'gpu_unittests',
753           ],
754           'includes': [
755             '../build/isolate.gypi',
756           ],
757           'sources': [
758             'gpu_unittests.isolate',
759           ],
760           'conditions': [
761             ['use_x11==1',
762               {
763                 'dependencies': [
764                   '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
765                 ],
766               }
767             ],
768           ],
769         },
770       ],
771     }],
772     ['(OS == "win" or OS == "linux") and archive_gpu_tests==1', {
773       'targets': [
774         {
775           # Only build dEQP on test configs. Note that dEQP is test-only code,
776           # and is only a part of the Chromium build to allow easy integration
777           # with the GPU bot waterfall. (Note that dEQP uses exceptions, and
778           # currently can't build with Clang on Windows)
779           'target_name': 'angle_deqp_gles2_tests',
780           'type': '<(gtest_target_type)',
781           'dependencies': [
782             '../base/base.gyp:base',
783             '../base/base.gyp:test_support_base',
784             '../third_party/angle/src/tests/tests.gyp:angle_deqp_gtest_support',
785             '../third_party/angle/src/tests/tests.gyp:angle_deqp_libgles2',
786           ],
787           'includes': [
788             '../third_party/angle/build/common_defines.gypi',
789           ],
790           'sources': [
791             'angle_deqp_tests_main.cc',
792           ],
793         },
794         {
795           'target_name': 'angle_deqp_gles3_tests',
796           'type': '<(gtest_target_type)',
797           'dependencies': [
798             '../base/base.gyp:base',
799             '../base/base.gyp:test_support_base',
800             '../third_party/angle/src/tests/tests.gyp:angle_deqp_gtest_support',
801             '../third_party/angle/src/tests/tests.gyp:angle_deqp_libgles3',
802           ],
803           'includes': [
804             '../third_party/angle/build/common_defines.gypi',
805           ],
806           'sources': [
807             'angle_deqp_tests_main.cc',
808           ],
809         },
810       ],
811     }]
812   ],