OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 # These are defined here because we need to build this library twice. Once | 8 # These are defined here because we need to build this library twice. Once |
9 # with extra parameter checking. Once with no parameter checking to be 100% | 9 # with extra parameter checking. Once with no parameter checking to be 100% |
10 # OpenGL ES 2.0 compliant for the conformance tests. | 10 # OpenGL ES 2.0 compliant for the conformance tests. |
11 'gles2_c_lib_source_files': [ | 11 'gles2_c_lib_source_files': [ |
12 'command_buffer/client/gles2_c_lib.cc', | 12 'command_buffer/client/gles2_c_lib.cc', |
13 'command_buffer/client/gles2_c_lib_autogen.h', | 13 'command_buffer/client/gles2_c_lib_autogen.h', |
14 'command_buffer/client/gles2_lib.h', | 14 'command_buffer/client/gles2_lib.h', |
15 'command_buffer/client/gles2_lib.cc', | 15 'command_buffer/client/gles2_lib.cc', |
16 ], | 16 ], |
17 # These are defined here because we need to build this library twice. Once | 17 # These are defined here because we need to build this library twice. Once |
18 # with without support for client side arrays and once with for pepper and | 18 # with without support for client side arrays and once with for pepper and |
19 # the OpenGL ES 2.0 compliant for the conformance tests. | 19 # the OpenGL ES 2.0 compliant for the conformance tests. |
20 'gles2_implementation_source_files': [ | 20 'gles2_implementation_source_files': [ |
21 'command_buffer/client/gles2_implementation_autogen.h', | 21 'command_buffer/client/gles2_implementation_autogen.h', |
22 'command_buffer/client/gles2_implementation.cc', | 22 'command_buffer/client/gles2_implementation.cc', |
23 'command_buffer/client/gles2_implementation.h', | 23 'command_buffer/client/gles2_implementation.h', |
| 24 'command_buffer/client/program_info_manager.cc', |
| 25 'command_buffer/client/program_info_manager.h', |
24 ] | 26 ] |
25 }, | 27 }, |
26 'targets': [ | 28 'targets': [ |
27 { | 29 { |
28 'target_name': 'command_buffer_common', | 30 'target_name': 'command_buffer_common', |
29 'type': 'static_library', | 31 'type': 'static_library', |
30 'include_dirs': [ | 32 'include_dirs': [ |
31 '.', | 33 '.', |
32 ], | 34 ], |
33 'all_dependent_settings': { | 35 'all_dependent_settings': { |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 'gpu_unittest_utils', | 266 'gpu_unittest_utils', |
265 'gles2_implementation_client_side_arrays', | 267 'gles2_implementation_client_side_arrays', |
266 'gles2_cmd_helper', | 268 'gles2_cmd_helper', |
267 ], | 269 ], |
268 'sources': [ | 270 'sources': [ |
269 '<@(gles2_c_lib_source_files)', | 271 '<@(gles2_c_lib_source_files)', |
270 'command_buffer/client/cmd_buffer_helper_test.cc', | 272 'command_buffer/client/cmd_buffer_helper_test.cc', |
271 'command_buffer/client/fenced_allocator_test.cc', | 273 'command_buffer/client/fenced_allocator_test.cc', |
272 'command_buffer/client/gles2_implementation_unittest.cc', | 274 'command_buffer/client/gles2_implementation_unittest.cc', |
273 'command_buffer/client/mapped_memory_unittest.cc', | 275 'command_buffer/client/mapped_memory_unittest.cc', |
| 276 'command_buffer/client/program_info_manager_unittest.cc', |
274 'command_buffer/client/ring_buffer_test.cc', | 277 'command_buffer/client/ring_buffer_test.cc', |
275 'command_buffer/common/bitfield_helpers_test.cc', | 278 'command_buffer/common/bitfield_helpers_test.cc', |
276 'command_buffer/common/command_buffer_mock.cc', | 279 'command_buffer/common/command_buffer_mock.cc', |
277 'command_buffer/common/command_buffer_mock.h', | 280 'command_buffer/common/command_buffer_mock.h', |
278 'command_buffer/common/gles2_cmd_format_test.cc', | 281 'command_buffer/common/gles2_cmd_format_test.cc', |
279 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 282 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
280 'command_buffer/common/gles2_cmd_id_test.cc', | 283 'command_buffer/common/gles2_cmd_id_test.cc', |
281 'command_buffer/common/gles2_cmd_id_test_autogen.h', | 284 'command_buffer/common/gles2_cmd_id_test_autogen.h', |
282 'command_buffer/common/gles2_cmd_utils_unittest.cc', | 285 'command_buffer/common/gles2_cmd_utils_unittest.cc', |
283 'command_buffer/common/id_allocator_test.cc', | 286 'command_buffer/common/id_allocator_test.cc', |
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 # 2 == /SUBSYSTEM:WINDOWS | 388 # 2 == /SUBSYSTEM:WINDOWS |
386 'SubSystem': '2', | 389 'SubSystem': '2', |
387 }, | 390 }, |
388 }, | 391 }, |
389 }, | 392 }, |
390 ], | 393 ], |
391 }, | 394 }, |
392 ], | 395 ], |
393 ], | 396 ], |
394 } | 397 } |
OLD | NEW |