| 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 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 236 ], | 236 ], |
| 237 }, | 237 }, |
| 238 { | 238 { |
| 239 'target_name': 'gpu_unittests', | 239 'target_name': 'gpu_unittests', |
| 240 'type': 'executable', | 240 'type': 'executable', |
| 241 'dependencies': [ | 241 'dependencies': [ |
| 242 '../app/app.gyp:app_base', | 242 '../app/app.gyp:app_base', |
| 243 '../testing/gmock.gyp:gmock', | 243 '../testing/gmock.gyp:gmock', |
| 244 '../testing/gmock.gyp:gmock_main', | 244 '../testing/gmock.gyp:gmock_main', |
| 245 '../testing/gtest.gyp:gtest', | 245 '../testing/gtest.gyp:gtest', |
| 246 '../ui/gfx/surface/surface.gyp:surface', |
| 246 'command_buffer_client', | 247 'command_buffer_client', |
| 247 'command_buffer_common', | 248 'command_buffer_common', |
| 248 'command_buffer_service', | 249 'command_buffer_service', |
| 249 'gpu_common', | 250 'gpu_common', |
| 250 'gpu_unittest_utils', | 251 'gpu_unittest_utils', |
| 251 'gles2_implementation_client_side_arrays', | 252 'gles2_implementation_client_side_arrays', |
| 252 'gles2_cmd_helper', | 253 'gles2_cmd_helper', |
| 253 ], | 254 ], |
| 254 'sources': [ | 255 'sources': [ |
| 255 '<@(gles2_c_lib_source_files)', | 256 '<@(gles2_c_lib_source_files)', |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 }, | 402 }, |
| 402 ], | 403 ], |
| 403 ], | 404 ], |
| 404 } | 405 } |
| 405 | 406 |
| 406 # Local Variables: | 407 # Local Variables: |
| 407 # tab-width:2 | 408 # tab-width:2 |
| 408 # indent-tabs-mode:nil | 409 # indent-tabs-mode:nil |
| 409 # End: | 410 # End: |
| 410 # vim: set expandtab tabstop=2 shiftwidth=2: | 411 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |