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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 'command_buffer/common/gles2_cmd_ids.h', | 107 'command_buffer/common/gles2_cmd_ids.h', |
108 'command_buffer/common/gles2_cmd_format_autogen.h', | 108 'command_buffer/common/gles2_cmd_format_autogen.h', |
109 'command_buffer/common/gles2_cmd_format.cc', | 109 'command_buffer/common/gles2_cmd_format.cc', |
110 'command_buffer/common/gles2_cmd_format.h', | 110 'command_buffer/common/gles2_cmd_format.h', |
111 'command_buffer/common/gles2_cmd_utils.cc', | 111 'command_buffer/common/gles2_cmd_utils.cc', |
112 'command_buffer/common/gles2_cmd_utils.h', | 112 'command_buffer/common/gles2_cmd_utils.h', |
113 'command_buffer/common/logging.h', | 113 'command_buffer/common/logging.h', |
114 'command_buffer/common/mocks.h', | 114 'command_buffer/common/mocks.h', |
115 'command_buffer/common/resource.cc', | 115 'command_buffer/common/resource.cc', |
116 'command_buffer/common/resource.h', | 116 'command_buffer/common/resource.h', |
| 117 'command_buffer/common/thread_local.h', |
117 'command_buffer/common/types.h', | 118 'command_buffer/common/types.h', |
118 ], | 119 ], |
119 }, | 120 }, |
120 { | 121 { |
121 # Library helps make GLES2 command buffers. | 122 # Library helps make GLES2 command buffers. |
122 'target_name': 'gles2_cmd_helper', | 123 'target_name': 'gles2_cmd_helper', |
123 'type': 'static_library', | 124 'type': 'static_library', |
124 'dependencies': [ | 125 'dependencies': [ |
125 'command_buffer_common', | 126 'command_buffer_common', |
126 ], | 127 ], |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
413 }, | 414 }, |
414 ], | 415 ], |
415 ], | 416 ], |
416 } | 417 } |
417 | 418 |
418 # Local Variables: | 419 # Local Variables: |
419 # tab-width:2 | 420 # tab-width:2 |
420 # indent-tabs-mode:nil | 421 # indent-tabs-mode:nil |
421 # End: | 422 # End: |
422 # vim: set expandtab tabstop=2 shiftwidth=2: | 423 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |