| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 'nacl_win64_target': 0, | 7 'nacl_win64_target': 0, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'gpu_common.gypi', | 10 'gpu_common.gypi', |
| (...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 'defines': [ | 169 'defines': [ |
| 170 'GLES2_C_LIB_IMPLEMENTATION', | 170 'GLES2_C_LIB_IMPLEMENTATION', |
| 171 ], | 171 ], |
| 172 'sources': [ | 172 'sources': [ |
| 173 '<@(gles2_c_lib_source_files)', | 173 '<@(gles2_c_lib_source_files)', |
| 174 'command_buffer/client/buffer_tracker_unittest.cc', | 174 'command_buffer/client/buffer_tracker_unittest.cc', |
| 175 'command_buffer/client/client_test_helper.cc', | 175 'command_buffer/client/client_test_helper.cc', |
| 176 'command_buffer/client/client_test_helper.h', | 176 'command_buffer/client/client_test_helper.h', |
| 177 'command_buffer/client/cmd_buffer_helper_test.cc', | 177 'command_buffer/client/cmd_buffer_helper_test.cc', |
| 178 'command_buffer/client/fenced_allocator_test.cc', | 178 'command_buffer/client/fenced_allocator_test.cc', |
| 179 'command_buffer/client/gles2_interface_stub.cc', | |
| 180 'command_buffer/client/gles2_interface_stub.h', | |
| 181 'command_buffer/client/gles2_implementation_unittest.cc', | 179 'command_buffer/client/gles2_implementation_unittest.cc', |
| 182 'command_buffer/client/mapped_memory_unittest.cc', | 180 'command_buffer/client/mapped_memory_unittest.cc', |
| 183 'command_buffer/client/query_tracker_unittest.cc', | 181 'command_buffer/client/query_tracker_unittest.cc', |
| 184 'command_buffer/client/program_info_manager_unittest.cc', | 182 'command_buffer/client/program_info_manager_unittest.cc', |
| 185 'command_buffer/client/ring_buffer_test.cc', | 183 'command_buffer/client/ring_buffer_test.cc', |
| 186 'command_buffer/client/transfer_buffer_unittest.cc', | 184 'command_buffer/client/transfer_buffer_unittest.cc', |
| 187 'command_buffer/client/vertex_array_object_manager_unittest.cc', | 185 'command_buffer/client/vertex_array_object_manager_unittest.cc', |
| 188 'command_buffer/common/bitfield_helpers_test.cc', | 186 'command_buffer/common/bitfield_helpers_test.cc', |
| 189 'command_buffer/common/command_buffer_mock.cc', | 187 'command_buffer/common/command_buffer_mock.cc', |
| 190 'command_buffer/common/command_buffer_mock.h', | 188 'command_buffer/common/command_buffer_mock.h', |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 '../third_party/khronos/khronos.gyp:khronos_headers', | 340 '../third_party/khronos/khronos.gyp:khronos_headers', |
| 343 '../ui/gl/gl.gyp:gl_unittest_utils', | 341 '../ui/gl/gl.gyp:gl_unittest_utils', |
| 344 'gpu', | 342 'gpu', |
| 345 ], | 343 ], |
| 346 'include_dirs': [ | 344 'include_dirs': [ |
| 347 '..', | 345 '..', |
| 348 ], | 346 ], |
| 349 'sources': [ | 347 'sources': [ |
| 350 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 348 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 351 'command_buffer/service/error_state_mock.cc', | 349 'command_buffer/service/error_state_mock.cc', |
| 350 'command_buffer/client/gles2_interface_stub.cc', |
| 351 'command_buffer/client/gles2_interface_stub.h', |
| 352 ], | 352 ], |
| 353 }, | 353 }, |
| 354 ], | 354 ], |
| 355 'conditions': [ | 355 'conditions': [ |
| 356 ['component=="static_library"', { | 356 ['component=="static_library"', { |
| 357 'targets': [ | 357 'targets': [ |
| 358 { | 358 { |
| 359 'target_name': 'disk_cache_proto', | 359 'target_name': 'disk_cache_proto', |
| 360 'type': 'static_library', | 360 'type': 'static_library', |
| 361 'sources': [ 'command_buffer/service/disk_cache_proto.proto' ], | 361 'sources': [ 'command_buffer/service/disk_cache_proto.proto' ], |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 570 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', | 570 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)gl_tests<
(SHARED_LIB_SUFFIX)', |
| 571 }, | 571 }, |
| 572 'includes': [ | 572 'includes': [ |
| 573 '../build/apk_test.gypi', | 573 '../build/apk_test.gypi', |
| 574 ], | 574 ], |
| 575 }, | 575 }, |
| 576 ], | 576 ], |
| 577 }], | 577 }], |
| 578 ], | 578 ], |
| 579 } | 579 } |
| OLD | NEW |