| 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 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 'target_name': 'command_buffer_client', | 109 'target_name': 'command_buffer_client', |
| 110 'type': 'static_library', | 110 'type': 'static_library', |
| 111 'dependencies': [ | 111 'dependencies': [ |
| 112 'command_buffer_common', | 112 'command_buffer_common', |
| 113 ], | 113 ], |
| 114 'sources': [ | 114 'sources': [ |
| 115 'command_buffer/client/cmd_buffer_helper.cc', | 115 'command_buffer/client/cmd_buffer_helper.cc', |
| 116 'command_buffer/client/cmd_buffer_helper.h', | 116 'command_buffer/client/cmd_buffer_helper.h', |
| 117 'command_buffer/client/fenced_allocator.cc', | 117 'command_buffer/client/fenced_allocator.cc', |
| 118 'command_buffer/client/fenced_allocator.h', | 118 'command_buffer/client/fenced_allocator.h', |
| 119 'command_buffer/client/mapped_memory.cc', |
| 120 'command_buffer/client/mapped_memory.h', |
| 119 'command_buffer/client/ring_buffer.cc', | 121 'command_buffer/client/ring_buffer.cc', |
| 120 'command_buffer/client/ring_buffer.h', | 122 'command_buffer/client/ring_buffer.h', |
| 121 ], | 123 ], |
| 122 }, | 124 }, |
| 123 { | 125 { |
| 124 'target_name': 'command_buffer_service', | 126 'target_name': 'command_buffer_service', |
| 125 'type': 'static_library', | 127 'type': 'static_library', |
| 126 'include_dirs': [ | 128 'include_dirs': [ |
| 127 '..', | 129 '..', |
| 128 ], | 130 ], |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 'command_buffer_common', | 228 'command_buffer_common', |
| 227 'command_buffer_service', | 229 'command_buffer_service', |
| 228 'gles2_lib', | 230 'gles2_lib', |
| 229 'gles2_implementation', | 231 'gles2_implementation', |
| 230 'gles2_cmd_helper', | 232 'gles2_cmd_helper', |
| 231 ], | 233 ], |
| 232 'sources': [ | 234 'sources': [ |
| 233 'command_buffer/client/cmd_buffer_helper_test.cc', | 235 'command_buffer/client/cmd_buffer_helper_test.cc', |
| 234 'command_buffer/client/fenced_allocator_test.cc', | 236 'command_buffer/client/fenced_allocator_test.cc', |
| 235 'command_buffer/client/gles2_implementation_unittest.cc', | 237 'command_buffer/client/gles2_implementation_unittest.cc', |
| 238 'command_buffer/client/mapped_memory_unittest.cc', |
| 236 'command_buffer/client/ring_buffer_test.cc', | 239 'command_buffer/client/ring_buffer_test.cc', |
| 237 'command_buffer/common/bitfield_helpers_test.cc', | 240 'command_buffer/common/bitfield_helpers_test.cc', |
| 238 'command_buffer/common/gles2_cmd_format_test.cc', | 241 'command_buffer/common/gles2_cmd_format_test.cc', |
| 239 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 242 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
| 240 'command_buffer/common/gles2_cmd_id_test.cc', | 243 'command_buffer/common/gles2_cmd_id_test.cc', |
| 241 'command_buffer/common/gles2_cmd_id_test_autogen.h', | 244 'command_buffer/common/gles2_cmd_id_test_autogen.h', |
| 242 'command_buffer/common/gles2_cmd_format_test.cc', | 245 'command_buffer/common/gles2_cmd_format_test.cc', |
| 243 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 246 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
| 244 'command_buffer/common/gles2_cmd_id_test.cc', | 247 'command_buffer/common/gles2_cmd_id_test.cc', |
| 245 'command_buffer/common/gles2_cmd_id_test_autogen.h', | 248 'command_buffer/common/gles2_cmd_id_test_autogen.h', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 }, | 337 }, |
| 335 ], | 338 ], |
| 336 ], | 339 ], |
| 337 } | 340 } |
| 338 | 341 |
| 339 # Local Variables: | 342 # Local Variables: |
| 340 # tab-width:2 | 343 # tab-width:2 |
| 341 # indent-tabs-mode:nil | 344 # indent-tabs-mode:nil |
| 342 # End: | 345 # End: |
| 343 # vim: set expandtab tabstop=2 shiftwidth=2: | 346 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |