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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 { | 134 { |
135 # Library emulates GLES2 using command_buffers. | 135 # Library emulates GLES2 using command_buffers. |
136 'target_name': 'gles2_implementation', | 136 'target_name': 'gles2_implementation', |
137 'type': 'static_library', | 137 'type': 'static_library', |
138 'dependencies': [ | 138 'dependencies': [ |
139 'gles2_cmd_helper', | 139 'gles2_cmd_helper', |
140 ], | 140 ], |
141 'sources': [ | 141 'sources': [ |
142 'command_buffer/client/gles2_implementation_autogen.h', | 142 'command_buffer/client/gles2_implementation_autogen.h', |
143 'command_buffer/client/gles2_implementation.cc', | 143 'command_buffer/client/gles2_implementation.cc', |
144 'command_buffer/client/gles2_implementation_gen.h', | |
145 'command_buffer/client/gles2_implementation.h', | 144 'command_buffer/client/gles2_implementation.h', |
146 ], | 145 ], |
147 }, | 146 }, |
148 { | 147 { |
149 # Stub to expose gles2_implementation as a namespace rather than a class | 148 # Stub to expose gles2_implementation as a namespace rather than a class |
150 # so GLES2 C++ programs can work with no changes. | 149 # so GLES2 C++ programs can work with no changes. |
151 'target_name': 'gles2_lib', | 150 'target_name': 'gles2_lib', |
152 'type': 'static_library', | 151 'type': 'static_library', |
153 'dependencies': [ | 152 'dependencies': [ |
154 'gles2_implementation', | 153 'gles2_implementation', |
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 }, | 413 }, |
415 ], | 414 ], |
416 ], | 415 ], |
417 } | 416 } |
418 | 417 |
419 # Local Variables: | 418 # Local Variables: |
420 # tab-width:2 | 419 # tab-width:2 |
421 # indent-tabs-mode:nil | 420 # indent-tabs-mode:nil |
422 # End: | 421 # End: |
423 # vim: set expandtab tabstop=2 shiftwidth=2: | 422 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |