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

Side by Side Diff: masters/master.chromium.webkit/master_linux_webkit_pinned_cfg.py

Issue 11516008: Switch the Linux bots on chromium.webkit to use Ninja. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 8 years 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 | « masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py ('k') | 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 from master import master_config 5 from master import master_config
6 from master.factory import chromium_factory 6 from master.factory import chromium_factory
7 7
8 defaults = {} 8 defaults = {}
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
(...skipping 15 matching lines...) Expand all
26 # Main release scheduler for chromium 26 # Main release scheduler for chromium
27 # 27 #
28 S('s3_chromium_rel', branch='src', treeStableTimer=60) 28 S('s3_chromium_rel', branch='src', treeStableTimer=60)
29 29
30 # 30 #
31 # Linux Rel Builder 31 # Linux Rel Builder
32 # 32 #
33 B('WebKit Linux (deps)', 'f_webkit_linux_rel', scheduler='s3_chromium_rel') 33 B('WebKit Linux (deps)', 'f_webkit_linux_rel', scheduler='s3_chromium_rel')
34 F('f_webkit_linux_rel', linux().ChromiumFactory( 34 F('f_webkit_linux_rel', linux().ChromiumFactory(
35 tests=[ 35 tests=[
36 'test_shell', 36 'test_shell',
37 'webkit', 37 'webkit',
38 'webkit_lint', 38 'webkit_lint',
39 'webkit_unit', 39 'webkit_unit',
40 ], 40 ],
41 options=[ 41 options=[
42 '--compiler=goma', 42 '--build-tool=ninja',
43 'DumpRenderTree', 43 '--compiler=goma',
44 'test_shell', 44 '--',
45 'test_shell_tests', 45 'DumpRenderTree',
46 'webkit_unit_tests', 46 'test_shell',
47 'test_shell_tests',
48 'webkit_unit_tests',
47 ], 49 ],
48 factory_properties={ 50 factory_properties={
49 'additional_expectations_files': [ 51 'additional_expectations_files': [
50 ['webkit', 'tools', 'layout_tests', 'test_expectations.txt' ], 52 ['webkit', 'tools', 'layout_tests', 'test_expectations.txt' ],
51 ], 53 ],
52 'archive_webkit_results': True, 54 'archive_webkit_results': True,
53 'generate_gtest_json': True, 55 'generate_gtest_json': True,
54 'test_results_server': 'test-results.appspot.com' 56 'test_results_server': 'test-results.appspot.com',
57 'gclient_env': { 'GYP_GENERATORS': 'ninja' },
55 })) 58 }))
56 59
57 def Update(config, active_master, c): 60 def Update(config, active_master, c):
58 return helper.Update(c) 61 return helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.webkit/master_linux_webkit_latest_cfg.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698