Infobar material design refresh: bg color
[chromium-blink-merge.git] / gpu / gpu.gyp
blob25cc26dac0a2f8e1c5c0f575b31a87ad0b0bd6ba
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       # GN version: //gpu:command_buffer_gles2
421       'target_name': 'command_buffer_gles2',
422       'type': 'shared_library',
423       'dependencies': [
424         '../base/base.gyp:base',
425         '../gpu/gpu.gyp:command_buffer_service',
426         '../ui/gfx/gfx.gyp:gfx_geometry',
427         '../ui/gl/gl.gyp:gl',
428         'gles2_c_lib',
429         'gles2_implementation',
430       ],
431       'sources': [
432         # Note: sources list duplicated in GN build.
433         # TODO(hendrikw): Move egl out of gles2_conform_support.
434         'gles2_conform_support/egl/config.cc',
435         'gles2_conform_support/egl/config.h',
436         'gles2_conform_support/egl/display.cc',
437         'gles2_conform_support/egl/display.h',
438         'gles2_conform_support/egl/egl.cc',
439         'gles2_conform_support/egl/surface.cc',
440         'gles2_conform_support/egl/surface.h',
441       ],
442       'conditions': [
443         ['OS=="win"', {
444           'defines': [
445             'EGLAPIENTRY=',
446             'EGLAPI=__declspec(dllexport)',
447           ],
448         }, { # OS!="win"
449           'defines': [
450             'EGLAPIENTRY=',
451             'EGLAPI=__attribute__((visibility(\"default\")))'
452           ],
453         }, ],
454       ],
455     }
456   ],
457   'conditions': [
458     ['component=="static_library"', {
459       'targets': [
460          {
461           # GN version: //gpu/command_buffer/service:disk_cache_proto
462           'target_name': 'disk_cache_proto',
463           'type': 'static_library',
464           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
465           'variables': {
466             'proto_in_dir': 'command_buffer/service',
467             'proto_out_dir': 'gpu/command_buffer/service',
468           },
469           'includes': [ '../build/protoc.gypi' ],
470         },
471         {
472           # GN version: //gpu
473           'target_name': 'gpu',
474           'type': 'none',
475           'dependencies': [
476             'command_buffer_client',
477             'command_buffer_common',
478             'command_buffer_service',
479             'gles2_cmd_helper',
480             'gpu_config',
481             'gpu_ipc',
482           ],
483           'sources': [
484             'gpu_export.h',
485           ],
486           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
487           'msvs_disabled_warnings': [4267, ],
488         },
489         {
490           # GN version: //gpu/command_buffer/common
491           'target_name': 'command_buffer_common',
492           'type': 'static_library',
493           'includes': [
494             'command_buffer_common.gypi',
495           ],
496           'dependencies': [
497             '../base/base.gyp:base',
498             'command_buffer/command_buffer.gyp:gles2_utils',
499           ],
500           'export_dependent_settings': [
501             '../base/base.gyp:base',
502           ],
503         },
504         {
505           # Library helps make GLES2 command buffers.
506           # GN version: //gpu/command_buffer/client:gles2_cmd_helper
507           'target_name': 'gles2_cmd_helper',
508           'type': 'static_library',
509           'includes': [
510             'gles2_cmd_helper.gypi',
511           ],
512           'dependencies': [
513             'command_buffer_client',
514           ],
515           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
516           'msvs_disabled_warnings': [4267, ],
517         },
518         {
519           # GN version: //gpu/command_buffer/client
520           'target_name': 'command_buffer_client',
521           'type': 'static_library',
522           'includes': [
523             'command_buffer_client.gypi',
524           ],
525           'dependencies': [
526             'command_buffer_common',
527           ],
528           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
529           'msvs_disabled_warnings': [4267, ],
530         },
531         {
532           # GN version: //gpu/command_buffer/service
533           'target_name': 'command_buffer_service',
534           'type': 'static_library',
535           'includes': [
536             'command_buffer_service.gypi',
537             '../build/android/increase_size_for_speed.gypi',
538             # Disable LTO due to ELF section name out of range
539             # crbug.com/422251
540             '../build/android/disable_gcc_lto.gypi',
541           ],
542           'dependencies': [
543             'command_buffer_common',
544             'disk_cache_proto',
545             'gpu_config',
546           ],
547           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
548           'msvs_disabled_warnings': [4267, ],
549         },
550         {
551           # GN version: //gpu/ipc
552           'target_name': 'gpu_ipc',
553           'type': 'static_library',
554           'includes': [
555             'gpu_ipc.gypi',
556           ],
557           'dependencies': [
558             'command_buffer_common',
559           ],
560         },
561         {
562           'target_name': 'gpu_config',
563           'type': 'static_library',
564           'includes': [
565             'gpu_config.gypi',
566           ],
567         },
568       ],
569     },
570     { # component != static_library
571       'targets': [
572          {
573           # GN version: //gpu/command_buffer/service:disk_cache_proto
574           'target_name': 'disk_cache_proto',
575           'type': 'static_library',
576           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
577           'variables': {
578             'proto_in_dir': 'command_buffer/service',
579             'proto_out_dir': 'gpu/command_buffer/service',
580           },
581           'includes': [ '../build/protoc.gypi' ],
582         },
583         {
584           # GN version: //gpu
585           'target_name': 'gpu',
586           'type': 'shared_library',
587           'includes': [
588             'command_buffer_client.gypi',
589             'command_buffer_common.gypi',
590             'command_buffer_service.gypi',
591             'gles2_cmd_helper.gypi',
592             'gpu_config.gypi',
593             'gpu_ipc.gypi',
594             '../build/android/increase_size_for_speed.gypi',
595           ],
596           'defines': [
597             'GPU_IMPLEMENTATION',
598           ],
599           'sources': [
600             'gpu_export.h',
601           ],
602           'dependencies': [
603             '../base/base.gyp:base',
604             'command_buffer/command_buffer.gyp:gles2_utils',
605             'disk_cache_proto',
606           ],
607           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
608           'msvs_disabled_warnings': [4267, ],
609         },
610         {
611           # GN version: //gpu/command_buffer/common
612           'target_name': 'command_buffer_common',
613           'type': 'none',
614           'dependencies': [
615             'gpu',
616           ],
617         },
618         {
619           # Library helps make GLES2 command buffers.
620           # GN version: //gpu/command_buffer/client:gles2_cmd_helper
621           'target_name': 'gles2_cmd_helper',
622           'type': 'none',
623           'dependencies': [
624             'gpu',
625           ],
626           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
627           'msvs_disabled_warnings': [4267, ],
628         },
629         {
630           # GN version: //gpu/command_buffer/client
631           'target_name': 'command_buffer_client',
632           'type': 'none',
633           'dependencies': [
634             'gpu',
635           ],
636         },
637         {
638           # GN version: //gpu/command_buffer/service
639           'target_name': 'command_buffer_service',
640           'type': 'none',
641           'dependencies': [
642             'gpu',
643           ],
644         },
645         {
646           # GN version: //gpu/ipc
647           'target_name': 'gpu_ipc',
648           'type': 'none',
649           'dependencies': [
650             'gpu',
651           ],
652         },
653       ],
654     }],
655     ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
656       'targets': [
657         {
658           'target_name': 'command_buffer_common_win64',
659           'type': 'static_library',
660           'variables': {
661             'nacl_win64_target': 1,
662           },
663           'includes': [
664             'command_buffer_common.gypi',
665           ],
666           'dependencies': [
667             '../base/base.gyp:base_win64',
668           ],
669           'defines': [
670             '<@(nacl_win64_defines)',
671             'GPU_IMPLEMENTATION',
672           ],
673           'configurations': {
674             'Common_Base': {
675               'msvs_target_platform': 'x64',
676             },
677           },
678         },
679         {
680           'target_name': 'gpu_ipc_win64',
681           'type': 'static_library',
682           'variables': {
683             'nacl_win64_target': 1,
684           },
685           'includes': [
686             'gpu_ipc.gypi',
687           ],
688           'dependencies': [
689             '../base/base.gyp:base_win64',
690             '../ipc/ipc.gyp:ipc_win64',
691             'command_buffer_common_win64',
692           ],
693           'defines': [
694             '<@(nacl_win64_defines)',
695             'GPU_IMPLEMENTATION',
696           ],
697           'configurations': {
698             'Common_Base': {
699               'msvs_target_platform': 'x64',
700             },
701           },
702         },
703       ],
704     }],
705     ['OS == "android"', {
706       'targets': [
707         {
708           'target_name': 'gl_tests_apk',
709           'type': 'none',
710           'dependencies': [
711             'gl_tests',
712           ],
713           'variables': {
714             'test_suite_name': 'gl_tests',
715           },
716           'includes': [
717             '../build/apk_test.gypi',
718           ],
719         },
720         {
721           'target_name': 'gpu_unittests_apk',
722           'type': 'none',
723           'dependencies': [
724             'gpu_unittests',
725           ],
726           'variables': {
727             'test_suite_name': 'gpu_unittests',
728           },
729           'includes': [ '../build/apk_test.gypi' ],
730         },
731         {
732           'target_name': 'gpu_perftests_apk',
733           'type': 'none',
734           'dependencies': [
735             'gpu_perftests',
736           ],
737           'variables': {
738             'test_suite_name': 'gpu_perftests',
739           },
740           'includes': [ '../build/apk_test.gypi' ],
741         },
742       ],
743     }],
744     ['OS == "win" or (OS == "linux" and use_x11==1)', {
745       'targets': [
746         {
747           # TODO(crbug.com/519834): port this target to the GN build.
748           'target_name': 'angle_end2end_tests',
749           'type': '<(gtest_target_type)',
750           'dependencies': [
751             '../base/base.gyp:base',
752             '../base/base.gyp:test_support_base',
753           ],
754           'includes': [
755             '../third_party/angle/build/common_defines.gypi',
756             '../third_party/angle/src/tests/angle_end2end_tests.gypi',
757           ],
758           'sources': [
759             'angle_end2end_tests_main.cc',
760           ],
761         },
762       ],
763     }],
764     ['OS == "win"', {
765       'targets': [
766         {
767           # TODO(jmadill): port this target to the GN build.
768           'target_name': 'angle_perftests',
769           'type': '<(gtest_target_type)',
770           'dependencies': [
771             '../base/base.gyp:base',
772             '../base/base.gyp:test_support_base',
773           ],
774           'includes': [
775             '../third_party/angle/build/common_defines.gypi',
776             '../third_party/angle/src/tests/angle_perftests.gypi',
777           ],
778           'sources': [
779             'angle_perftests_main.cc',
780           ],
781         },
782       ],
783     }],
784     ['test_isolation_mode != "noop"', {
785       'targets': [
786         {
787           'target_name': 'gpu_unittests_run',
788           'type': 'none',
789           'dependencies': [
790             'gpu_unittests',
791           ],
792           'includes': [
793             '../build/isolate.gypi',
794           ],
795           'sources': [
796             'gpu_unittests.isolate',
797           ],
798           'conditions': [
799             ['use_x11==1',
800               {
801                 'dependencies': [
802                   '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
803                 ],
804               }
805             ],
806           ],
807         },
808       ],
809     }],
810     ['(OS == "win" or OS == "linux") and archive_gpu_tests==1', {
811       'targets': [
812         {
813           # Only build dEQP on test configs. Note that dEQP is test-only code,
814           # and is only a part of the Chromium build to allow easy integration
815           # with the GPU bot waterfall. (Note that dEQP uses exceptions, and
816           # currently can't build with Clang on Windows)
817           'target_name': 'angle_deqp_gles2_tests',
818           'type': '<(gtest_target_type)',
819           'dependencies': [
820             '../base/base.gyp:base',
821             '../base/base.gyp:test_support_base',
822             '../third_party/angle/src/tests/tests.gyp:angle_deqp_gtest_support',
823             '../third_party/angle/src/tests/tests.gyp:angle_deqp_libgles2',
824           ],
825           'includes': [
826             '../third_party/angle/build/common_defines.gypi',
827           ],
828           'sources': [
829             'angle_deqp_tests_main.cc',
830           ],
831         },
832         {
833           'target_name': 'angle_deqp_gles3_tests',
834           'type': '<(gtest_target_type)',
835           'dependencies': [
836             '../base/base.gyp:base',
837             '../base/base.gyp:test_support_base',
838             '../third_party/angle/src/tests/tests.gyp:angle_deqp_gtest_support',
839             '../third_party/angle/src/tests/tests.gyp:angle_deqp_libgles3',
840           ],
841           'includes': [
842             '../third_party/angle/build/common_defines.gypi',
843           ],
844           'sources': [
845             'angle_deqp_tests_main.cc',
846           ],
847         },
848       ],
849     }]
850   ],