OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 # These are defined here because we need to build this library twice. Once | 8 # These are defined here because we need to build this library twice. Once |
9 # with extra parameter checking. Once with no parameter checking to be 100% | 9 # with extra parameter checking. Once with no parameter checking to be 100% |
10 # OpenGL ES 2.0 compliant for the conformance tests. | 10 # OpenGL ES 2.0 compliant for the conformance tests. |
(...skipping 302 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
313 '../app/app.gyp:app_base', | 313 '../app/app.gyp:app_base', |
314 '../testing/gmock.gyp:gmock', | 314 '../testing/gmock.gyp:gmock', |
315 '../testing/gtest.gyp:gtest', | 315 '../testing/gtest.gyp:gtest', |
316 ], | 316 ], |
317 'include_dirs': [ | 317 'include_dirs': [ |
318 '..', | 318 '..', |
319 ], | 319 ], |
320 'sources': [ | 320 'sources': [ |
321 'command_buffer/common/gl_mock.h', | 321 'command_buffer/common/gl_mock.h', |
322 'command_buffer/common/gl_mock.cc', | 322 'command_buffer/common/gl_mock.cc', |
| 323 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 324 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
323 ], | 325 ], |
324 }, | 326 }, |
325 { | 327 { |
326 'target_name': 'gles2_demo_lib', | 328 'target_name': 'gles2_demo_lib', |
327 'type': 'static_library', | 329 'type': 'static_library', |
328 'dependencies': [ | 330 'dependencies': [ |
329 'command_buffer_client', | 331 'command_buffer_client', |
330 'gles2_c_lib', | 332 'gles2_c_lib', |
331 ], | 333 ], |
332 'sources': [ | 334 'sources': [ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
403 }, | 405 }, |
404 ], | 406 ], |
405 ], | 407 ], |
406 } | 408 } |
407 | 409 |
408 # Local Variables: | 410 # Local Variables: |
409 # tab-width:2 | 411 # tab-width:2 |
410 # indent-tabs-mode:nil | 412 # indent-tabs-mode:nil |
411 # End: | 413 # End: |
412 # vim: set expandtab tabstop=2 shiftwidth=2: | 414 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |