| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 'command_buffer/common/command_buffer.h', | 104 'command_buffer/common/command_buffer.h', |
| 105 'command_buffer/common/command_buffer_mock.h', | 105 'command_buffer/common/command_buffer_mock.h', |
| 106 'command_buffer/common/constants.h', | 106 'command_buffer/common/constants.h', |
| 107 'command_buffer/common/gles2_cmd_ids_autogen.h', | 107 'command_buffer/common/gles2_cmd_ids_autogen.h', |
| 108 'command_buffer/common/gles2_cmd_ids.h', | 108 'command_buffer/common/gles2_cmd_ids.h', |
| 109 'command_buffer/common/gles2_cmd_format_autogen.h', | 109 'command_buffer/common/gles2_cmd_format_autogen.h', |
| 110 'command_buffer/common/gles2_cmd_format.cc', | 110 'command_buffer/common/gles2_cmd_format.cc', |
| 111 'command_buffer/common/gles2_cmd_format.h', | 111 'command_buffer/common/gles2_cmd_format.h', |
| 112 'command_buffer/common/gles2_cmd_utils.cc', | 112 'command_buffer/common/gles2_cmd_utils.cc', |
| 113 'command_buffer/common/gles2_cmd_utils.h', | 113 'command_buffer/common/gles2_cmd_utils.h', |
| 114 'command_buffer/common/logging.h', | |
| 115 'command_buffer/common/mocks.h', | 114 'command_buffer/common/mocks.h', |
| 116 'command_buffer/common/resource.cc', | 115 'command_buffer/common/resource.cc', |
| 117 'command_buffer/common/resource.h', | 116 'command_buffer/common/resource.h', |
| 118 'command_buffer/common/types.h', | 117 'command_buffer/common/types.h', |
| 119 ], | 118 ], |
| 120 }, | 119 }, |
| 121 { | 120 { |
| 122 # Library helps make GLES2 command buffers. | 121 # Library helps make GLES2 command buffers. |
| 123 'target_name': 'gles2_cmd_helper', | 122 'target_name': 'gles2_cmd_helper', |
| 124 'type': 'static_library', | 123 'type': 'static_library', |
| (...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 }, | 375 }, |
| 377 ], | 376 ], |
| 378 ], | 377 ], |
| 379 } | 378 } |
| 380 | 379 |
| 381 # Local Variables: | 380 # Local Variables: |
| 382 # tab-width:2 | 381 # tab-width:2 |
| 383 # indent-tabs-mode:nil | 382 # indent-tabs-mode:nil |
| 384 # End: | 383 # End: |
| 385 # vim: set expandtab tabstop=2 shiftwidth=2: | 384 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |