| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'nacl_win64_target': 0, | 7 'nacl_win64_target': 0, |
| 8 }, | 8 }, |
| 9 'includes': [ | 9 'includes': [ |
| 10 'gpu_common.gypi', | 10 'gpu_common.gypi', |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 'command_buffer/tests/occlusion_query_unittests.cc', | 250 'command_buffer/tests/occlusion_query_unittests.cc', |
| 251 ], | 251 ], |
| 252 }, | 252 }, |
| 253 { | 253 { |
| 254 'target_name': 'gpu_unittest_utils', | 254 'target_name': 'gpu_unittest_utils', |
| 255 'type': 'static_library', | 255 'type': 'static_library', |
| 256 'dependencies': [ | 256 'dependencies': [ |
| 257 '../testing/gmock.gyp:gmock', | 257 '../testing/gmock.gyp:gmock', |
| 258 '../testing/gtest.gyp:gtest', | 258 '../testing/gtest.gyp:gtest', |
| 259 '../third_party/khronos/khronos.gyp:khronos_headers', | 259 '../third_party/khronos/khronos.gyp:khronos_headers', |
| 260 '../ui/gl/gl.gyp:gl', | 260 '../ui/gl/gl.gyp:gl_unittest_utils', |
| 261 ], | 261 ], |
| 262 'include_dirs': [ | 262 'include_dirs': [ |
| 263 '..', | 263 '..', |
| 264 ], | 264 ], |
| 265 'sources': [ | 265 'sources': [ |
| 266 'command_buffer/common/gl_mock.h', | |
| 267 'command_buffer/common/gl_mock.cc', | |
| 268 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 266 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 269 'command_buffer/service/gles2_cmd_decoder_mock.cc', | 267 'command_buffer/service/gles2_cmd_decoder_mock.cc', |
| 270 ], | 268 ], |
| 271 }, | 269 }, |
| 272 ], | 270 ], |
| 273 'conditions': [ | 271 'conditions': [ |
| 274 ['component=="static_library"', { | 272 ['component=="static_library"', { |
| 275 'targets': [ | 273 'targets': [ |
| 276 { | 274 { |
| 277 'target_name': 'gpu', | 275 'target_name': 'gpu', |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 'configurations': { | 425 'configurations': { |
| 428 'Common_Base': { | 426 'Common_Base': { |
| 429 'msvs_target_platform': 'x64', | 427 'msvs_target_platform': 'x64', |
| 430 }, | 428 }, |
| 431 }, | 429 }, |
| 432 }, | 430 }, |
| 433 ], | 431 ], |
| 434 }], | 432 }], |
| 435 ], | 433 ], |
| 436 } | 434 } |
| OLD | NEW |