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

Side by Side Diff: build/all.gyp

Issue 9696049: Add enable_automation build switch. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 8 years, 9 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 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
271 }, # target_name: chromium_gpu_debug_builder 271 }, # target_name: chromium_gpu_debug_builder
272 { 272 {
273 'target_name': 'chromium_builder_qa', 273 'target_name': 'chromium_builder_qa',
274 'type': 'none', 274 'type': 'none',
275 'dependencies': [ 275 'dependencies': [
276 '../chrome/chrome.gyp:chromedriver', 276 '../chrome/chrome.gyp:chromedriver',
277 ], 277 ],
278 'conditions': [ 278 'conditions': [
279 # If you change this condition, make sure you also change it 279 # If you change this condition, make sure you also change it
280 # in chrome_tests.gypi 280 # in chrome_tests.gypi
281 ['OS=="mac" or OS=="win" or (os_posix==1 and OS != "android" and target_ arch==python_arch)', { 281 ['enable_automation==1 and (OS=="mac" or OS=="win" or (os_posix==1 and t arget_arch==python_arch))', {
282 'dependencies': [ 282 'dependencies': [
283 '../chrome/chrome.gyp:pyautolib', 283 '../chrome/chrome.gyp:pyautolib',
284 ], 284 ],
285 }], 285 }],
286 ], 286 ],
287 }, # target_name: chromium_builder_qa 287 }, # target_name: chromium_builder_qa
288 ], 288 ],
289 'conditions': [ 289 'conditions': [
290 ['OS=="mac"', { 290 ['OS=="mac"', {
291 'targets': [ 291 'targets': [
(...skipping 332 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 '../chrome/chrome.gyp:ui_tests', 624 '../chrome/chrome.gyp:ui_tests',
625 '../ui/views/views.gyp:views_unittests', 625 '../ui/views/views.gyp:views_unittests',
626 ], 626 ],
627 }], 627 }],
628 ], 628 ],
629 }, 629 },
630 ], # targets 630 ], # targets
631 }], # "use_aura==1" 631 }], # "use_aura==1"
632 ], # conditions 632 ], # conditions
633 } 633 }
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