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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 'command_buffer/service/cmd_parser_test.cc', | 292 'command_buffer/service/cmd_parser_test.cc', |
293 'command_buffer/service/command_buffer_service_unittest.cc', | 293 'command_buffer/service/command_buffer_service_unittest.cc', |
294 'command_buffer/service/common_decoder_unittest.cc', | 294 'command_buffer/service/common_decoder_unittest.cc', |
295 'command_buffer/service/gpu_processor_unittest.cc', | 295 'command_buffer/service/gpu_processor_unittest.cc', |
296 'command_buffer/service/resource_test.cc', | 296 'command_buffer/service/resource_test.cc', |
297 'command_buffer/service/gl_interface.h', | 297 'command_buffer/service/gl_interface.h', |
298 'command_buffer/service/gl_interface.cc', | 298 'command_buffer/service/gl_interface.cc', |
299 'command_buffer/service/gl_mock.h', | 299 'command_buffer/service/gl_mock.h', |
300 'command_buffer/service/gl_mock.cc', | 300 'command_buffer/service/gl_mock.cc', |
301 'command_buffer/service/gles2_cmd_decoder_unittest.cc', | 301 'command_buffer/service/gles2_cmd_decoder_unittest.cc', |
| 302 'command_buffer/service/gles2_cmd_decoder_unittest_autogen.h', |
302 'command_buffer/common/gles2_cmd_format_test.cc', | 303 'command_buffer/common/gles2_cmd_format_test.cc', |
303 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 304 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
304 'command_buffer/common/gles2_cmd_id_test.cc', | 305 'command_buffer/common/gles2_cmd_id_test.cc', |
305 'command_buffer/common/gles2_cmd_id_test_autogen.h', | 306 'command_buffer/common/gles2_cmd_id_test_autogen.h', |
306 ], | 307 ], |
307 }, | 308 }, |
308 }, | 309 }, |
309 { | 310 { |
310 'target_name': 'gpu_plugin', | 311 'target_name': 'gpu_plugin', |
311 'type': 'static_library', | 312 'type': 'static_library', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 }, | 377 }, |
377 ], | 378 ], |
378 ], | 379 ], |
379 } | 380 } |
380 | 381 |
381 # Local Variables: | 382 # Local Variables: |
382 # tab-width:2 | 383 # tab-width:2 |
383 # indent-tabs-mode:nil | 384 # indent-tabs-mode:nil |
384 # End: | 385 # End: |
385 # vim: set expandtab tabstop=2 shiftwidth=2: | 386 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |