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

Side by Side Diff: build/all.gyp

Issue 10824287: Add a build target for perf_av bot dependencies. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Nits Created 8 years, 4 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 | « no previous file | no next file » | 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 'conditions': [ 324 'conditions': [
325 # If you change this condition, make sure you also change it 325 # If you change this condition, make sure you also change it
326 # in chrome_tests.gypi 326 # in chrome_tests.gypi
327 ['enable_automation==1 and (OS=="mac" or OS=="win" or (os_posix==1 a nd target_arch==python_arch))', { 327 ['enable_automation==1 and (OS=="mac" or OS=="win" or (os_posix==1 a nd target_arch==python_arch))', {
328 'dependencies': [ 328 'dependencies': [
329 '../chrome/chrome.gyp:pyautolib', 329 '../chrome/chrome.gyp:pyautolib',
330 ], 330 ],
331 }], 331 }],
332 ], 332 ],
333 }, # target_name: chromium_builder_qa 333 }, # target_name: chromium_builder_qa
334 {
335 'target_name': 'chromium_builder_perf_av',
336 'type': 'none',
337 'dependencies': [
338 'chromium_builder_qa', # needed for perf pyauto tests
339 '../webkit/webkit.gyp:pull_in_DumpRenderTree', # to run layout test s
340 ],
341 }, # target_name: chromium_builder_perf_av
334 ], # targets 342 ], # targets
335 }], 343 }],
336 ['OS=="mac"', { 344 ['OS=="mac"', {
337 'targets': [ 345 'targets': [
338 { 346 {
339 # Target to build everything plus the dmg. We don't put the dmg 347 # Target to build everything plus the dmg. We don't put the dmg
340 # in the All target because developers really don't need it. 348 # in the All target because developers really don't need it.
341 'target_name': 'all_and_dmg', 349 'target_name': 'all_and_dmg',
342 'type': 'none', 350 'type': 'none',
343 'dependencies': [ 351 'dependencies': [
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
679 '../base/base.gyp:base_unittests_run', 687 '../base/base.gyp:base_unittests_run',
680 '../chrome/chrome.gyp:browser_tests_run', 688 '../chrome/chrome.gyp:browser_tests_run',
681 '../chrome/chrome.gyp:unit_tests_run', 689 '../chrome/chrome.gyp:unit_tests_run',
682 '../net/net.gyp:net_unittests_run', 690 '../net/net.gyp:net_unittests_run',
683 ], 691 ],
684 }, # target_name: chromium_swarm_tests 692 }, # target_name: chromium_swarm_tests
685 ], 693 ],
686 }], 694 }],
687 ], # conditions 695 ], # conditions
688 } 696 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698