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 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 | 9 |
10 'targets': [ | 10 'targets': [ |
(...skipping 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 'gl_mock.h', | 291 'gl_mock.h', |
292 'gl_mock_autogen_gl.h', | 292 'gl_mock_autogen_gl.h', |
293 'gpu_timing_fake.cc', | 293 'gpu_timing_fake.cc', |
294 'gpu_timing_fake.h', | 294 'gpu_timing_fake.h', |
295 ], | 295 ], |
296 }, | 296 }, |
297 { | 297 { |
298 'target_name': 'gl_test_support', | 298 'target_name': 'gl_test_support', |
299 'type': 'static_library', | 299 'type': 'static_library', |
300 'dependencies': [ | 300 'dependencies': [ |
| 301 '<(DEPTH)/testing/gtest.gyp:gtest', |
301 '../../third_party/khronos/khronos.gyp:khronos_headers', | 302 '../../third_party/khronos/khronos.gyp:khronos_headers', |
302 'gl', | 303 'gl', |
303 ], | 304 ], |
304 'include_dirs': [ | 305 'include_dirs': [ |
305 '../..', | 306 '../..', |
306 ], | 307 ], |
307 'sources': [ | 308 'sources': [ |
| 309 'test/gl_image_test_support.cc', |
| 310 'test/gl_image_test_support.h', |
| 311 'test/gl_image_test_template.h', |
308 'test/gl_surface_test_support.cc', | 312 'test/gl_surface_test_support.cc', |
309 'test/gl_surface_test_support.h', | 313 'test/gl_surface_test_support.h', |
| 314 'test/gl_test_helper.cc', |
| 315 'test/gl_test_helper.h', |
310 ], | 316 ], |
311 'conditions': [ | 317 'conditions': [ |
312 ['use_x11==1', { | 318 ['use_x11==1', { |
313 'dependencies': [ | 319 'dependencies': [ |
314 '../../build/linux/system.gyp:x11', | 320 '../../build/linux/system.gyp:x11', |
315 '../gfx/x/gfx_x11.gyp:gfx_x11', | 321 '../gfx/x/gfx_x11.gyp:gfx_x11', |
316 '../platform_window/x11/x11_window.gyp:x11_window', | 322 '../platform_window/x11/x11_window.gyp:x11_window', |
317 ], | 323 ], |
318 }], | 324 }], |
319 ], | 325 ], |
(...skipping 23 matching lines...) Expand all Loading... |
343 ], | 349 ], |
344 'variables': { | 350 'variables': { |
345 'jni_gen_package': 'ui/gl', | 351 'jni_gen_package': 'ui/gl', |
346 }, | 352 }, |
347 'includes': [ '../../build/jni_generator.gypi' ], | 353 'includes': [ '../../build/jni_generator.gypi' ], |
348 }, | 354 }, |
349 ], | 355 ], |
350 }], | 356 }], |
351 ], | 357 ], |
352 } | 358 } |
OLD | NEW |