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 'includes': [ | 9 'includes': [ |
10 '../build/common.gypi', | 10 '../build/common.gypi', |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 'gles2_lib', | 168 'gles2_lib', |
169 'gles2_implementation', | 169 'gles2_implementation', |
170 'gles2_cmd_helper', | 170 'gles2_cmd_helper', |
171 ], | 171 ], |
172 'direct_dependent_settings': { | 172 'direct_dependent_settings': { |
173 'sources': [ | 173 'sources': [ |
174 'command_buffer/common/bitfield_helpers_test.cc', | 174 'command_buffer/common/bitfield_helpers_test.cc', |
175 'command_buffer/common/gles2_cmd_format_test.cc', | 175 'command_buffer/common/gles2_cmd_format_test.cc', |
176 'command_buffer/common/gles2_cmd_format_test_autogen.h', | 176 'command_buffer/common/gles2_cmd_format_test_autogen.h', |
177 'command_buffer/common/gles2_cmd_id_test.cc', | 177 'command_buffer/common/gles2_cmd_id_test.cc', |
| 178 'command_buffer/common/gles2_cmd_id_test_autogen.h', |
178 ], | 179 ], |
179 }, | 180 }, |
180 }, | 181 }, |
181 { | 182 { |
182 'target_name': 'command_buffer_client', | 183 'target_name': 'command_buffer_client', |
183 'type': 'static_library', | 184 'type': 'static_library', |
184 'dependencies': [ | 185 'dependencies': [ |
185 'command_buffer_common', | 186 'command_buffer_common', |
186 ], | 187 ], |
187 'sources': [ | 188 'sources': [ |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
221 ], | 222 ], |
222 'sources': [ | 223 'sources': [ |
223 'command_buffer/service/common_decoder.cc', | 224 'command_buffer/service/common_decoder.cc', |
224 'command_buffer/service/common_decoder.h', | 225 'command_buffer/service/common_decoder.h', |
225 'command_buffer/service/cmd_buffer_engine.h', | 226 'command_buffer/service/cmd_buffer_engine.h', |
226 'command_buffer/service/command_buffer_service.cc', | 227 'command_buffer/service/command_buffer_service.cc', |
227 'command_buffer/service/command_buffer_service.h', | 228 'command_buffer/service/command_buffer_service.h', |
228 'command_buffer/service/cmd_parser.cc', | 229 'command_buffer/service/cmd_parser.cc', |
229 'command_buffer/service/cmd_parser.h', | 230 'command_buffer/service/cmd_parser.h', |
230 'command_buffer/service/gles2_cmd_decoder.h', | 231 'command_buffer/service/gles2_cmd_decoder.h', |
231 'command_buffer/service/gles2_cmd_decoder_validate.h', | |
232 'command_buffer/service/gles2_cmd_decoder_autogen.h', | 232 'command_buffer/service/gles2_cmd_decoder_autogen.h', |
233 'command_buffer/service/gles2_cmd_decoder.cc', | 233 'command_buffer/service/gles2_cmd_decoder.cc', |
| 234 'command_buffer/service/gles2_cmd_validation.h', |
| 235 'command_buffer/service/gles2_cmd_validation.cc', |
| 236 'command_buffer/service/gles2_cmd_validation_autogen.h', |
| 237 'command_buffer/service/gles2_cmd_validation_implementation_autogen.h', |
234 'command_buffer/service/gl_utils.h', | 238 'command_buffer/service/gl_utils.h', |
235 'command_buffer/service/gpu_processor.h', | 239 'command_buffer/service/gpu_processor.h', |
236 'command_buffer/service/gpu_processor.cc', | 240 'command_buffer/service/gpu_processor.cc', |
237 'command_buffer/service/gpu_processor_mock.h', | 241 'command_buffer/service/gpu_processor_mock.h', |
238 'command_buffer/service/mocks.h', | 242 'command_buffer/service/mocks.h', |
239 'command_buffer/service/precompile.cc', | 243 'command_buffer/service/precompile.cc', |
240 'command_buffer/service/precompile.h', | 244 'command_buffer/service/precompile.h', |
241 'command_buffer/service/resource.cc', | 245 'command_buffer/service/resource.cc', |
242 'command_buffer/service/resource.h', | 246 'command_buffer/service/resource.h', |
243 ], | 247 ], |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 ], | 330 ], |
327 }, | 331 }, |
328 ] | 332 ] |
329 } | 333 } |
330 | 334 |
331 # Local Variables: | 335 # Local Variables: |
332 # tab-width:2 | 336 # tab-width:2 |
333 # indent-tabs-mode:nil | 337 # indent-tabs-mode:nil |
334 # End: | 338 # End: |
335 # vim: set expandtab tabstop=2 shiftwidth=2: | 339 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |