Omnibox Style Cleanup
[chromium-blink-merge.git] / gpu / gpu.gyp
blobb815609f7e220b37880964bd8ac12a7f8bedf34d
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       'target_name': 'gles2_implementation',
16       'type': '<(component)',
17       'dependencies': [
18         '../base/base.gyp:base',
19         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
20         '../third_party/khronos/khronos.gyp:khronos_headers',
21         '../ui/gl/gl.gyp:gl',
22         '../ui/gfx/gfx.gyp:gfx',
23         '../ui/gfx/gfx.gyp:gfx_geometry',
24         'command_buffer/command_buffer.gyp:gles2_utils',
25         'gles2_cmd_helper',
26       ],
27       'defines': [
28         'GLES2_IMPL_IMPLEMENTATION',
29       ],
30       'sources': [
31         '<@(gles2_implementation_source_files)',
32         'command_buffer/client/gl_in_process_context.h',
33         'command_buffer/client/gl_in_process_context.cc',
34       ],
35       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
36       'msvs_disabled_warnings': [4267, ],
37     },
38     {
39       # Library emulates GLES2 using command_buffers.
40       'target_name': 'gles2_implementation_client_side_arrays',
41       'type': '<(component)',
42       'defines': [
43         'GLES2_IMPL_IMPLEMENTATION',
44         'GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1',
45       ],
46       'dependencies': [
47         '../base/base.gyp:base',
48         '../third_party/khronos/khronos.gyp:khronos_headers',
49         '../ui/gl/gl.gyp:gl',
50         '../ui/gfx/gfx.gyp:gfx_geometry',
51         '../ui/gfx/gfx.gyp:gfx',
52         'command_buffer/command_buffer.gyp:gles2_utils',
53         'gles2_cmd_helper',
54       ],
55       'sources': [
56         '<@(gles2_implementation_source_files)',
57       ],
58       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
59       'msvs_disabled_warnings': [ 4267, ],
60     },
61     {
62       # Library emulates GLES2 using command_buffers.
63       'target_name': 'gles2_implementation_client_side_arrays_no_check',
64       'type': '<(component)',
65       'defines': [
66         'GLES2_IMPL_IMPLEMENTATION',
67         'GLES2_SUPPORT_CLIENT_SIDE_ARRAYS=1',
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       'target_name': 'gles2_c_lib',
88       'type': '<(component)',
89       'dependencies': [
90         '../base/base.gyp:base',
91         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
92         'command_buffer/command_buffer.gyp:gles2_utils',
93         'command_buffer_client',
94         'gles2_implementation',
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       # Same as gles2_c_lib except with no parameter checking. Required for
107       # OpenGL ES 2.0 conformance tests.
108       'target_name': 'gles2_c_lib_nocheck',
109       'type': '<(component)',
110       'defines': [
111         'GLES2_C_LIB_IMPLEMENTATION',
112         'GLES2_CONFORMANCE_TESTS=1',
113       ],
114       'dependencies': [
115         '../base/base.gyp:base',
116         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
117         'command_buffer/command_buffer.gyp:gles2_utils',
118         'command_buffer_client',
119         'gles2_implementation_client_side_arrays_no_check',
120       ],
121       'sources': [
122         '<@(gles2_c_lib_source_files)',
123       ],
124     },
125     {
126       'target_name': 'angle_unittests',
127       'type': '<(gtest_target_type)',
128       'dependencies': [
129         '../base/base.gyp:base',
130         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
131         '../testing/gmock.gyp:gmock',
132         '../testing/gtest.gyp:gtest',
133         '<(angle_path)/src/build_angle.gyp:translator_static',
134       ],
135       'variables': {
136         'ANGLE_DIR': '<(angle_path)',
137       },
138       'includes': [
139         '../third_party/angle/tests/preprocessor_tests/preprocessor_tests.gypi',
140         '../third_party/angle/tests/compiler_tests/compiler_tests.gypi',
141       ],
142       'include_dirs': [
143         '..',
144         '<(angle_path)/include',
145         '<(angle_path)/src',
146         '<(angle_path)/src/compiler/preprocessor',
147         '<(angle_path)/tests',
148       ],
149       'sources': [
150         'angle_unittest_main.cc',
151       ],
152     },
153     {
154       'target_name': 'gpu_unittests',
155       'type': '<(gtest_target_type)',
156       'dependencies': [
157         '../base/base.gyp:base',
158         '../base/base.gyp:test_support_base',
159         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
160         '../testing/gmock.gyp:gmock',
161         '../testing/gtest.gyp:gtest',
162         '<(angle_path)/src/build_angle.gyp:translator',
163         '../ui/gl/gl.gyp:gl',
164         '../ui/gfx/gfx.gyp:gfx',
165         '../ui/gfx/gfx.gyp:gfx_geometry',
166         'command_buffer/command_buffer.gyp:gles2_utils',
167         'command_buffer_client',
168         'command_buffer_common',
169         'command_buffer_service',
170         'gpu',
171         'gpu_unittest_utils',
172         'gles2_implementation_client_side_arrays',
173         'gles2_cmd_helper',
174       ],
175       'defines': [
176         'GLES2_C_LIB_IMPLEMENTATION',
177       ],
178       'sources': [
179         '<@(gles2_c_lib_source_files)',
180         'command_buffer/client/buffer_tracker_unittest.cc',
181         'command_buffer/client/client_test_helper.cc',
182         'command_buffer/client/client_test_helper.h',
183         'command_buffer/client/cmd_buffer_helper_test.cc',
184         'command_buffer/client/fenced_allocator_test.cc',
185         'command_buffer/client/gles2_implementation_unittest.cc',
186         'command_buffer/client/mapped_memory_unittest.cc',
187         'command_buffer/client/query_tracker_unittest.cc',
188         'command_buffer/client/program_info_manager_unittest.cc',
189         'command_buffer/client/ring_buffer_test.cc',
190         'command_buffer/client/transfer_buffer_unittest.cc',
191         'command_buffer/client/vertex_array_object_manager_unittest.cc',
192         'command_buffer/common/bitfield_helpers_test.cc',
193         'command_buffer/common/command_buffer_mock.cc',
194         'command_buffer/common/command_buffer_mock.h',
195         'command_buffer/common/command_buffer_shared_test.cc',
196         'command_buffer/common/debug_marker_manager_unittest.cc',
197         'command_buffer/common/gles2_cmd_format_test.cc',
198         'command_buffer/common/gles2_cmd_format_test_autogen.h',
199         'command_buffer/common/gles2_cmd_utils_unittest.cc',
200         'command_buffer/common/id_allocator_test.cc',
201         'command_buffer/common/trace_event.h',
202         'command_buffer/common/unittest_main.cc',
203         'command_buffer/service/async_pixel_transfer_delegate_mock.h',
204         'command_buffer/service/async_pixel_transfer_delegate_mock.cc',
205         'command_buffer/service/async_pixel_transfer_manager_mock.h',
206         'command_buffer/service/async_pixel_transfer_manager_mock.cc',
207         'command_buffer/service/buffer_manager_unittest.cc',
208         'command_buffer/service/cmd_parser_test.cc',
209         'command_buffer/service/command_buffer_service_unittest.cc',
210         'command_buffer/service/common_decoder_unittest.cc',
211         'command_buffer/service/context_group_unittest.cc',
212         'command_buffer/service/feature_info_unittest.cc',
213         'command_buffer/service/framebuffer_manager_unittest.cc',
214         'command_buffer/service/gles2_cmd_decoder_unittest.cc',
215         'command_buffer/service/gles2_cmd_decoder_unittest_0_autogen.h',
216         'command_buffer/service/gles2_cmd_decoder_unittest_1.cc',
217         'command_buffer/service/gles2_cmd_decoder_unittest_1_autogen.h',
218         'command_buffer/service/gles2_cmd_decoder_unittest_2.cc',
219         'command_buffer/service/gles2_cmd_decoder_unittest_2_autogen.h',
220         'command_buffer/service/gles2_cmd_decoder_unittest_3.cc',
221         'command_buffer/service/gles2_cmd_decoder_unittest_3_autogen.h',
222         'command_buffer/service/gles2_cmd_decoder_unittest_base.cc',
223         'command_buffer/service/gles2_cmd_decoder_unittest_base.h',
224         'command_buffer/service/gl_surface_mock.cc',
225         'command_buffer/service/gl_surface_mock.h',
226         'command_buffer/service/gpu_scheduler_unittest.cc',
227         'command_buffer/service/id_manager_unittest.cc',
228         'command_buffer/service/mailbox_manager_unittest.cc',
229         'command_buffer/service/memory_program_cache_unittest.cc',
230         'command_buffer/service/mocks.cc',
231         'command_buffer/service/mocks.h',
232         'command_buffer/service/program_manager_unittest.cc',
233         'command_buffer/service/query_manager_unittest.cc',
234         'command_buffer/service/renderbuffer_manager_unittest.cc',
235         'command_buffer/service/program_cache_unittest.cc',
236         'command_buffer/service/shader_manager_unittest.cc',
237         'command_buffer/service/shader_translator_unittest.cc',
238         'command_buffer/service/stream_texture_mock.cc',
239         'command_buffer/service/stream_texture_mock.h',
240         'command_buffer/service/stream_texture_manager_mock.cc',
241         'command_buffer/service/stream_texture_manager_mock.h',
242         'command_buffer/service/test_helper.cc',
243         'command_buffer/service/test_helper.h',
244         'command_buffer/service/texture_manager_unittest.cc',
245         'command_buffer/service/transfer_buffer_manager_unittest.cc',
246         'command_buffer/service/vertex_attrib_manager_unittest.cc',
247         'command_buffer/service/vertex_array_manager_unittest.cc',
248         'config/gpu_blacklist_unittest.cc',
249         'config/gpu_control_list_entry_unittest.cc',
250         'config/gpu_control_list_machine_model_info_unittest.cc',
251         'config/gpu_control_list_number_info_unittest.cc',
252         'config/gpu_control_list_os_info_unittest.cc',
253         'config/gpu_control_list_string_info_unittest.cc',
254         'config/gpu_control_list_unittest.cc',
255         'config/gpu_control_list_version_info_unittest.cc',
256         'config/gpu_driver_bug_list_unittest.cc',
257         'config/gpu_info_collector_unittest.cc',
258         'config/gpu_info_unittest.cc',
259         'config/gpu_test_config_unittest.cc',
260         'config/gpu_test_expectations_parser_unittest.cc',
261         'config/gpu_util_unittest.cc',
262       ],
263       'conditions': [
264         ['OS == "android" and gtest_target_type == "shared_library"', {
265           'dependencies': [
266             '../testing/android/native_test.gyp:native_test_native_code',
267           ],
268         }],
269         # See http://crbug.com/162998#c4 for why this is needed.
270         ['OS=="linux" and linux_use_tcmalloc==1', {
271           'dependencies': [
272             '../base/allocator/allocator.gyp:allocator',
273           ],
274         }],
275       ],
276       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
277       'msvs_disabled_warnings': [ 4267, ],
278     },
279     {
280       'target_name': 'gl_tests',
281       'type': '<(gtest_target_type)',
282       'dependencies': [
283         '../base/base.gyp:base',
284         '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
285         '../testing/gmock.gyp:gmock',
286         '../testing/gtest.gyp:gtest',
287         '<(angle_path)/src/build_angle.gyp:translator',
288         '../ui/gfx/gfx.gyp:gfx',
289         '../ui/gfx/gfx.gyp:gfx_geometry',
290         'command_buffer/command_buffer.gyp:gles2_utils',
291         'command_buffer_client',
292         'command_buffer_common',
293         'command_buffer_service',
294         'gpu',
295         'gpu_unittest_utils',
296         'gles2_implementation_client_side_arrays',
297         'gles2_cmd_helper',
298         #'gl_unittests',
299       ],
300       'defines': [
301         'GLES2_C_LIB_IMPLEMENTATION',
302         'GL_GLEXT_PROTOTYPES',
303       ],
304       'sources': [
305         '<@(gles2_c_lib_source_files)',
306         'command_buffer/tests/compressed_texture_test.cc',
307         'command_buffer/tests/gl_bind_uniform_location_unittest.cc',
308         'command_buffer/tests/gl_chromium_framebuffer_multisample_unittest.cc',
309         'command_buffer/tests/gl_copy_texture_CHROMIUM_unittest.cc',
310         'command_buffer/tests/gl_depth_texture_unittest.cc',
311         'command_buffer/tests/gl_gpu_memory_buffer_unittests.cc',
312         'command_buffer/tests/gl_lose_context_chromium_unittests.cc',
313         'command_buffer/tests/gl_manager.cc',
314         'command_buffer/tests/gl_manager.h',
315         'command_buffer/tests/gl_pointcoord_unittest.cc',
316         'command_buffer/tests/gl_program_unittests.cc',
317         'command_buffer/tests/gl_query_unittests.cc',
318         'command_buffer/tests/gl_readback_unittests.cc',
319         'command_buffer/tests/gl_shared_resources_unittests.cc',
320         'command_buffer/tests/gl_stream_draw_unittests.cc',
321         'command_buffer/tests/gl_test_utils.cc',
322         'command_buffer/tests/gl_test_utils.h',
323         'command_buffer/tests/gl_tests_main.cc',
324         'command_buffer/tests/gl_texture_mailbox_unittests.cc',
325         'command_buffer/tests/gl_texture_storage_unittests.cc',
326         'command_buffer/tests/gl_unittests.cc',
327         'command_buffer/tests/gl_unittests_android.cc',
328         'command_buffer/tests/gl_virtual_contexts_unittests.cc',
329         'command_buffer/tests/occlusion_query_unittests.cc',
330       ],
331       'conditions': [
332         ['OS == "android" and gtest_target_type == "shared_library"', {
333           'dependencies': [
334             '../testing/android/native_test.gyp:native_test_native_code',
335           ],
336         }],
337       ],
338       # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
339       'msvs_disabled_warnings': [ 4267, ],
340     },
341     {
342       'target_name': 'gpu_unittest_utils',
343       'type': 'static_library',
344       'dependencies': [
345         '../testing/gmock.gyp:gmock',
346         '../testing/gtest.gyp:gtest',
347         '../third_party/khronos/khronos.gyp:khronos_headers',
348         '../ui/gl/gl.gyp:gl_unittest_utils',
349         'gpu',
350       ],
351       'include_dirs': [
352         '..',
353       ],
354       'sources': [
355         'command_buffer/service/gles2_cmd_decoder_mock.cc',
356         'command_buffer/service/error_state_mock.cc',
357         'command_buffer/client/gles2_interface_stub.cc',
358         'command_buffer/client/gles2_interface_stub.h',
359       ],
360     },
361   ],
362   'conditions': [
363     ['component=="static_library"', {
364       'targets': [
365          {
366           'target_name': 'disk_cache_proto',
367           'type': 'static_library',
368           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
369           'variables': {
370             'proto_in_dir': 'command_buffer/service',
371             'proto_out_dir': 'gpu/command_buffer/service',
372           },
373           'includes': [ '../build/protoc.gypi' ],
374         },
375         {
376           'target_name': 'gpu',
377           'type': 'none',
378           'dependencies': [
379             'command_buffer_client',
380             'command_buffer_common',
381             'command_buffer_service',
382             'gles2_cmd_helper',
383             'gpu_config',
384             'gpu_ipc',
385           ],
386           'sources': [
387             'gpu_export.h',
388           ],
389           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
390           'msvs_disabled_warnings': [4267, ],
391         },
392         {
393           'target_name': 'command_buffer_common',
394           'type': 'static_library',
395           'includes': [
396             'command_buffer_common.gypi',
397           ],
398           'dependencies': [
399             '../base/base.gyp:base',
400             'command_buffer/command_buffer.gyp:gles2_utils',
401           ],
402           'export_dependent_settings': [
403             '../base/base.gyp:base',
404           ],
405         },
406         {
407           # Library helps make GLES2 command buffers.
408           'target_name': 'gles2_cmd_helper',
409           'type': 'static_library',
410           'includes': [
411             'gles2_cmd_helper.gypi',
412           ],
413           'dependencies': [
414             'command_buffer_client',
415           ],
416           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
417           'msvs_disabled_warnings': [4267, ],
418         },
419         {
420           'target_name': 'command_buffer_client',
421           'type': 'static_library',
422           'includes': [
423             'command_buffer_client.gypi',
424           ],
425           'dependencies': [
426             'command_buffer_common',
427           ],
428           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
429           'msvs_disabled_warnings': [4267, ],
430         },
431         {
432           'target_name': 'command_buffer_service',
433           'type': 'static_library',
434           'includes': [
435             'command_buffer_service.gypi',
436           ],
437           'dependencies': [
438             'command_buffer_common',
439             'disk_cache_proto',
440           ],
441           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
442           'msvs_disabled_warnings': [4267, ],
443         },
444         {
445           'target_name': 'gpu_ipc',
446           'type': 'static_library',
447           'includes': [
448             'gpu_ipc.gypi',
449           ],
450           'dependencies': [
451             'command_buffer_common',
452           ],
453         },
454         {
455           'target_name': 'gpu_config',
456           'type': 'static_library',
457           'includes': [
458             'gpu_config.gypi',
459           ],
460         },
461       ],
462     },
463     { # component != static_library
464       'targets': [
465          {
466           'target_name': 'disk_cache_proto',
467           'type': 'static_library',
468           'sources': [ 'command_buffer/service/disk_cache_proto.proto' ],
469           'variables': {
470             'proto_in_dir': 'command_buffer/service',
471             'proto_out_dir': 'gpu/command_buffer/service',
472           },
473           'includes': [ '../build/protoc.gypi' ],
474         },
475         {
476           'target_name': 'gpu',
477           'type': 'shared_library',
478           'includes': [
479             'command_buffer_client.gypi',
480             'command_buffer_common.gypi',
481             'command_buffer_service.gypi',
482             'gles2_cmd_helper.gypi',
483             'gpu_config.gypi',
484             'gpu_ipc.gypi',
485           ],
486           'defines': [
487             'GPU_IMPLEMENTATION',
488           ],
489           'sources': [
490             'gpu_export.h',
491           ],
492           'dependencies': [
493             '../base/base.gyp:base',
494             'command_buffer/command_buffer.gyp:gles2_utils',
495             'disk_cache_proto',
496           ],
497           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
498           'msvs_disabled_warnings': [4267, ],
499         },
500         {
501           'target_name': 'command_buffer_common',
502           'type': 'none',
503           'dependencies': [
504             'gpu',
505           ],
506         },
507         {
508           # Library helps make GLES2 command buffers.
509           'target_name': 'gles2_cmd_helper',
510           'type': 'none',
511           'dependencies': [
512             'gpu',
513           ],
514           # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
515           'msvs_disabled_warnings': [4267, ],
516         },
517         {
518           'target_name': 'command_buffer_client',
519           'type': 'none',
520           'dependencies': [
521             'gpu',
522           ],
523         },
524         {
525           'target_name': 'command_buffer_service',
526           'type': 'none',
527           'dependencies': [
528             'gpu',
529           ],
530         },
531         {
532           'target_name': 'gpu_ipc',
533           'type': 'none',
534           'dependencies': [
535             'gpu',
536           ],
537         },
538       ],
539     }],
540     ['disable_nacl!=1 and OS=="win" and target_arch=="ia32"', {
541       'targets': [
542         {
543           'target_name': 'gpu_ipc_win64',
544           'type': 'static_library',
545           'variables': {
546             'nacl_win64_target': 1,
547           },
548           'includes': [
549             'gpu_ipc.gypi',
550           ],
551           'dependencies': [
552             '../base/base.gyp:base_nacl_win64',
553             '../ipc/ipc.gyp:ipc_win64',
554           ],
555           'defines': [
556             '<@(nacl_win64_defines)',
557             'GPU_IMPLEMENTATION',
558           ],
559           'configurations': {
560             'Common_Base': {
561               'msvs_target_platform': 'x64',
562             },
563           },
564         },
565       ],
566     }],
567     ['OS == "android" and gtest_target_type == "shared_library"', {
568       'targets': [
569         {
570           'target_name': 'gl_tests_apk',
571           'type': 'none',
572           'dependencies': [
573             'gl_tests',
574           ],
575           'variables': {
576             'test_suite_name': 'gl_tests',
577             'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<(SHARED_LIB_SUFFIX)',
578           },
579           'includes': [
580             '../build/apk_test.gypi',
581           ],
582         },
583       ],
584     }],
585   ],