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 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 'include_dirs': [ | 244 'include_dirs': [ |
245 '<(DEPTH)/third_party/angle/include', | 245 '<(DEPTH)/third_party/angle/include', |
246 ], | 246 ], |
247 }], | 247 }], |
248 ], | 248 ], |
249 }, | 249 }, |
250 { | 250 { |
251 'target_name': 'gpu_unittests', | 251 'target_name': 'gpu_unittests', |
252 'type': 'executable', | 252 'type': 'executable', |
253 'dependencies': [ | 253 'dependencies': [ |
254 '../app/app.gyp:app_base', | |
255 '../testing/gmock.gyp:gmock', | 254 '../testing/gmock.gyp:gmock', |
256 '../testing/gmock.gyp:gmock_main', | 255 '../testing/gmock.gyp:gmock_main', |
257 '../testing/gtest.gyp:gtest', | 256 '../testing/gtest.gyp:gtest', |
258 '../ui/gfx/gl/gl.gyp:gl', | 257 '../ui/gfx/gl/gl.gyp:gl', |
259 'command_buffer_client', | 258 'command_buffer_client', |
260 'command_buffer_common', | 259 'command_buffer_common', |
261 'command_buffer_service', | 260 'command_buffer_service', |
262 'gpu_unittest_utils', | 261 'gpu_unittest_utils', |
263 'gles2_implementation_client_side_arrays', | 262 'gles2_implementation_client_side_arrays', |
264 'gles2_cmd_helper', | 263 'gles2_cmd_helper', |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 }, | 386 }, |
388 ], | 387 ], |
389 ], | 388 ], |
390 } | 389 } |
391 | 390 |
392 # Local Variables: | 391 # Local Variables: |
393 # tab-width:2 | 392 # tab-width:2 |
394 # indent-tabs-mode:nil | 393 # indent-tabs-mode:nil |
395 # End: | 394 # End: |
396 # vim: set expandtab tabstop=2 shiftwidth=2: | 395 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |