| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 # This is defined here because we need to compile this set of files | 8 # This is defined here because we need to compile this set of files |
| 9 # twice with different defines. Once so it calls real GL, again so it | 9 # twice with different defines. Once so it calls real GL, again so it |
| 10 # calls mock GL for the unit tests. | 10 # calls mock GL for the unit tests. |
| (...skipping 215 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 'dependencies': [ | 226 'dependencies': [ |
| 227 'command_buffer_common', | 227 'command_buffer_common', |
| 228 ], | 228 ], |
| 229 'sources': [ | 229 'sources': [ |
| 230 'command_buffer/client/cmd_buffer_helper.cc', | 230 'command_buffer/client/cmd_buffer_helper.cc', |
| 231 'command_buffer/client/cmd_buffer_helper.h', | 231 'command_buffer/client/cmd_buffer_helper.h', |
| 232 'command_buffer/client/fenced_allocator.cc', | 232 'command_buffer/client/fenced_allocator.cc', |
| 233 'command_buffer/client/fenced_allocator.h', | 233 'command_buffer/client/fenced_allocator.h', |
| 234 'command_buffer/client/id_allocator.cc', | 234 'command_buffer/client/id_allocator.cc', |
| 235 'command_buffer/client/id_allocator.h', | 235 'command_buffer/client/id_allocator.h', |
| 236 'command_buffer/client/ring_buffer.cc', |
| 237 'command_buffer/client/ring_buffer.h', |
| 236 ], | 238 ], |
| 237 }, | 239 }, |
| 238 { | 240 { |
| 239 'target_name': 'command_buffer_service_impl', | 241 'target_name': 'command_buffer_service_impl', |
| 240 'type': 'static_library', | 242 'type': 'static_library', |
| 241 'include_dirs': [ | 243 'include_dirs': [ |
| 242 '..', | 244 '..', |
| 243 ], | 245 ], |
| 244 'all_dependent_settings': { | 246 'all_dependent_settings': { |
| 245 'include_dirs': [ | 247 'include_dirs': [ |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 333 'gles2_lib', | 335 'gles2_lib', |
| 334 'gles2_implementation', | 336 'gles2_implementation', |
| 335 'gles2_cmd_helper', | 337 'gles2_cmd_helper', |
| 336 ], | 338 ], |
| 337 'sources': [ | 339 'sources': [ |
| 338 '<@(gpu_service_source_files)', | 340 '<@(gpu_service_source_files)', |
| 339 'command_buffer/client/cmd_buffer_helper_test.cc', | 341 'command_buffer/client/cmd_buffer_helper_test.cc', |
| 340 'command_buffer/client/fenced_allocator_test.cc', | 342 'command_buffer/client/fenced_allocator_test.cc', |
| 341 'command_buffer/client/gles2_implementation_unittest.cc', | 343 'command_buffer/client/gles2_implementation_unittest.cc', |
| 342 'command_buffer/client/id_allocator_test.cc', | 344 'command_buffer/client/id_allocator_test.cc', |
| 345 'command_buffer/client/ring_buffer_test.cc', |
| 343 'command_buffer/common/bitfield_helpers_test.cc', | 346 'command_buffer/common/bitfield_helpers_test.cc', |
| 344 'command_buffer/common/gles2_cmd_format_test.cc', | 347 'command_buffer/common/gles2_cmd_format_test.cc', |
| 345 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 348 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
| 346 'command_buffer/common/gles2_cmd_id_test.cc', | 349 'command_buffer/common/gles2_cmd_id_test.cc', |
| 347 'command_buffer/common/gles2_cmd_id_test_autogen.h', | 350 'command_buffer/common/gles2_cmd_id_test_autogen.h', |
| 348 'command_buffer/common/gles2_cmd_format_test.cc', | 351 'command_buffer/common/gles2_cmd_format_test.cc', |
| 349 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 352 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
| 350 'command_buffer/common/gles2_cmd_id_test.cc', | 353 'command_buffer/common/gles2_cmd_id_test.cc', |
| 351 'command_buffer/common/gles2_cmd_id_test_autogen.h', | 354 'command_buffer/common/gles2_cmd_id_test_autogen.h', |
| 352 'command_buffer/common/gles2_cmd_format_test.cc', | 355 'command_buffer/common/gles2_cmd_format_test.cc', |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 443 }, | 446 }, |
| 444 ], | 447 ], |
| 445 ], | 448 ], |
| 446 } | 449 } |
| 447 | 450 |
| 448 # Local Variables: | 451 # Local Variables: |
| 449 # tab-width:2 | 452 # tab-width:2 |
| 450 # indent-tabs-mode:nil | 453 # indent-tabs-mode:nil |
| 451 # End: | 454 # End: |
| 452 # vim: set expandtab tabstop=2 shiftwidth=2: | 455 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |