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

Side by Side Diff: build/all.gyp

Issue 6368109: Add new target for building qa-related targets on the qa waterfall. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add comment Created 9 years, 10 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 | chrome/chrome_tests.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) 2010 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2010 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 '../chrome/chrome.gyp:url_fetch_test', 210 '../chrome/chrome.gyp:url_fetch_test',
211 ], 211 ],
212 }, # target_name: chromium_builder_perf 212 }, # target_name: chromium_builder_perf
213 { 213 {
214 'target_name': 'chromium_gpu_builder', 214 'target_name': 'chromium_gpu_builder',
215 'type': 'none', 215 'type': 'none',
216 'dependencies': [ 216 'dependencies': [
217 '../chrome/chrome.gyp:gpu_tests', 217 '../chrome/chrome.gyp:gpu_tests',
218 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderTree' , 218 '../third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:DumpRenderTree' ,
219 ], 219 ],
220 } 220 }, # target_name: chromium_gpu_builder
221 {
222 'target_name': 'chromium_builder_qa',
223 'type': 'none',
224 'dependencies': [
225 '../chrome/chrome.gyp:chromedriver',
226 ],
227 'conditions': [
228 ['OS=="mac" or OS=="win" or (OS=="linux" and target_arch==python_arch)', {
229 'dependencies': [
230 '../chrome/chrome.gyp:pyautolib',
231 ],
232 }], # 'OS=="mac" or OS=="win" or (OS=="linux" and target_arch==python_ar ch)'
233 ],
234 }, # target_name: chromium_builder_qa
221 ], 235 ],
222 'conditions': [ 236 'conditions': [
223 ['OS=="mac"', { 237 ['OS=="mac"', {
224 'targets': [ 238 'targets': [
225 { 239 {
226 # Target to build everything plus the dmg. We don't put the dmg 240 # Target to build everything plus the dmg. We don't put the dmg
227 # in the All target because developers really don't need it. 241 # in the All target because developers really don't need it.
228 'target_name': 'all_and_dmg', 242 'target_name': 'all_and_dmg',
229 'type': 'none', 243 'type': 'none',
230 'dependencies': [ 244 'dependencies': [
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
480 ], # targets 494 ], # targets
481 }], # "chromeos==1" 495 }], # "chromeos==1"
482 ], # conditions 496 ], # conditions
483 } 497 }
484 498
485 # Local Variables: 499 # Local Variables:
486 # tab-width:2 500 # tab-width:2
487 # indent-tabs-mode:nil 501 # indent-tabs-mode:nil
488 # End: 502 # End:
489 # vim: set expandtab tabstop=2 shiftwidth=2: 503 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698