Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Side by Side Diff: ui/gl/gl.gyp

Issue 1354483004: Re-land: ui: Add GLImage unit test framework. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/gl/BUILD.gn ('k') | ui/gl/gl_api_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « ui/gl/BUILD.gn ('k') | ui/gl/gl_api_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698