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

Side by Side Diff: build/all.gyp

Issue 10796101: Conditionally add the OpenGL ES 2.0 conformance tests to all.gyp (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | build/common.gypi » ('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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'All', 8 'target_name': 'All',
9 'type': 'none', 9 'type': 'none',
10 'xcode_create_dependents_test_runner': 1, 10 'xcode_create_dependents_test_runner': 1,
(...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after
300 }, # target_name: chromium_builder_perf 300 }, # target_name: chromium_builder_perf
301 { 301 {
302 'target_name': 'chromium_gpu_builder', 302 'target_name': 'chromium_gpu_builder',
303 'type': 'none', 303 'type': 'none',
304 'dependencies': [ 304 'dependencies': [
305 '../chrome/chrome.gyp:gpu_tests', 305 '../chrome/chrome.gyp:gpu_tests',
306 '../chrome/chrome.gyp:performance_browser_tests', 306 '../chrome/chrome.gyp:performance_browser_tests',
307 '../chrome/chrome.gyp:performance_ui_tests', 307 '../chrome/chrome.gyp:performance_ui_tests',
308 '../gpu/gpu.gyp:gl_tests', 308 '../gpu/gpu.gyp:gl_tests',
309 ], 309 ],
310 'conditions': [
311 ['internal_gles2_conform_tests', {
312 'dependencies': [
313 '../gpu/gles2_conform_test/gles2_conform_test.gyp:gles2_conform_ test_windowless',
314 ],
315 }], # internal_gles2_conform
Zhenyao Mo 2012/07/23 21:15:46 Just want to make sure: you only want to run this
greggman 2012/07/23 22:22:19 Thanks for pointing that out. Added the debug ones
316 ],
310 }, # target_name: chromium_gpu_builder 317 }, # target_name: chromium_gpu_builder
311 { 318 {
312 'target_name': 'chromium_gpu_debug_builder', 319 'target_name': 'chromium_gpu_debug_builder',
313 'type': 'none', 320 'type': 'none',
314 'dependencies': [ 321 'dependencies': [
315 '../chrome/chrome.gyp:gpu_tests', 322 '../chrome/chrome.gyp:gpu_tests',
316 '../gpu/gpu.gyp:gl_tests', 323 '../gpu/gpu.gyp:gl_tests',
317 ], 324 ],
318 }, # target_name: chromium_gpu_debug_builder 325 }, # target_name: chromium_gpu_debug_builder
319 { 326 {
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
673 'dependencies': [ 680 'dependencies': [
674 '../chromeos/chromeos.gyp:chromeos_unittests', 681 '../chromeos/chromeos.gyp:chromeos_unittests',
675 ], 682 ],
676 }], 683 }],
677 ], 684 ],
678 }, 685 },
679 ], # targets 686 ], # targets
680 }], # "use_aura==1" 687 }], # "use_aura==1"
681 ], # conditions 688 ], # conditions
682 } 689 }
OLDNEW
« no previous file with comments | « no previous file | build/common.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698