| 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', | |
| 302 '../../third_party/khronos/khronos.gyp:khronos_headers', | 301 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 303 'gl', | 302 'gl', |
| 304 ], | 303 ], |
| 305 'include_dirs': [ | 304 'include_dirs': [ |
| 306 '../..', | 305 '../..', |
| 307 ], | 306 ], |
| 308 'sources': [ | 307 'sources': [ |
| 309 'test/gl_image_test_support.cc', | |
| 310 'test/gl_image_test_support.h', | |
| 311 'test/gl_image_test_template.h', | |
| 312 'test/gl_surface_test_support.cc', | 308 'test/gl_surface_test_support.cc', |
| 313 'test/gl_surface_test_support.h', | 309 'test/gl_surface_test_support.h', |
| 314 'test/gl_test_helper.cc', | |
| 315 'test/gl_test_helper.h', | |
| 316 ], | 310 ], |
| 317 'conditions': [ | 311 'conditions': [ |
| 318 ['use_x11==1', { | 312 ['use_x11==1', { |
| 319 'dependencies': [ | 313 'dependencies': [ |
| 320 '../../build/linux/system.gyp:x11', | 314 '../../build/linux/system.gyp:x11', |
| 321 '../gfx/x/gfx_x11.gyp:gfx_x11', | 315 '../gfx/x/gfx_x11.gyp:gfx_x11', |
| 322 '../platform_window/x11/x11_window.gyp:x11_window', | 316 '../platform_window/x11/x11_window.gyp:x11_window', |
| 323 ], | 317 ], |
| 324 }], | 318 }], |
| 325 ], | 319 ], |
| (...skipping 23 matching lines...) Expand all Loading... |
| 349 ], | 343 ], |
| 350 'variables': { | 344 'variables': { |
| 351 'jni_gen_package': 'ui/gl', | 345 'jni_gen_package': 'ui/gl', |
| 352 }, | 346 }, |
| 353 'includes': [ '../../build/jni_generator.gypi' ], | 347 'includes': [ '../../build/jni_generator.gypi' ], |
| 354 }, | 348 }, |
| 355 ], | 349 ], |
| 356 }], | 350 }], |
| 357 ], | 351 ], |
| 358 } | 352 } |
| OLD | NEW |