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

Side by Side Diff: masters/master.client.syzygy/master_win_cont_cfg.py

Issue 7670026: Fix continuous and official builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Remove decoy defaults Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | masters/master.client.syzygy/master_win_official_cfg.py » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 syzygy_factory 6 from master.factory import syzygy_factory
7 7
8 defaults = { 'category': 'continous' } 8 defaults = { 'category': 'continuous' }
9 9
10 helper = master_config.Helper(defaults) 10 helper = master_config.Helper(defaults)
11 B = helper.Builder 11 B = helper.Builder
12 D = helper.Dependent 12 D = helper.Dependent
13 F = helper.Factory 13 F = helper.Factory
14 S = helper.Scheduler 14 S = helper.Scheduler
15 15
16 def win(): 16 def win():
17 return syzygy_factory.SyzygyFactory('src/syzygy', 17 return syzygy_factory.SyzygyFactory('src/syzygy',
18 target_platform='win32') 18 target_platform='win32')
(...skipping 18 matching lines...) Expand all
37 37
38 # 38 #
39 # Windows continuous code coverage builder 39 # Windows continuous code coverage builder
40 # 40 #
41 B('Syzygy Coverage', 'f_syzygy_win_cov', scheduler='syzygy_cont') 41 B('Syzygy Coverage', 'f_syzygy_win_cov', scheduler='syzygy_cont')
42 F('f_syzygy_win_cov', win().SyzygyCoverageFactory(target='release')) 42 F('f_syzygy_win_cov', win().SyzygyCoverageFactory(target='release'))
43 43
44 44
45 def Update(config, active_master, c): 45 def Update(config, active_master, c):
46 return helper.Update(c) 46 return helper.Update(c)
OLDNEW
« no previous file with comments | « no previous file | masters/master.client.syzygy/master_win_official_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698