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

Side by Side Diff: masters/master.chromium.lkgr/master_lkgr_cfg.py

Issue 14383021: Break config_default into master_site_configs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: config -> config_bootstrap for masters_test import Created 7 years, 7 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
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 import config 8 import master_site_config
9 9
10 ActiveMaster = config.Master.ChromiumLKGR 10 ActiveMaster = master_site_config.ChromiumLKGR
11 11
12 defaults = {} 12 defaults = {}
13 13
14 helper = master_config.Helper(defaults) 14 helper = master_config.Helper(defaults)
15 B = helper.Builder 15 B = helper.Builder
16 F = helper.Factory 16 F = helper.Factory
17 S = helper.Scheduler 17 S = helper.Scheduler
18 18
19 def win(): return chromium_factory.ChromiumFactory('src/build', 'win32') 19 def win(): return chromium_factory.ChromiumFactory('src/build', 'win32')
20 def linux(): return chromium_factory.ChromiumFactory('src/build', 'linux2') 20 def linux(): return chromium_factory.ChromiumFactory('src/build', 'linux2')
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'gs_bucket': 'gs://chromium-browser-continuous', 183 'gs_bucket': 'gs://chromium-browser-continuous',
184 'perf_id': 'android-release', 184 'perf_id': 'android-release',
185 'show_perf_results': True, 185 'show_perf_results': True,
186 }, 186 },
187 annotation_script='src/build/android/buildbot/bb_run_bot.py', 187 annotation_script='src/build/android/buildbot/bb_run_bot.py',
188 )) 188 ))
189 189
190 190
191 def Update(_config, active_master, c): 191 def Update(_config, active_master, c):
192 return helper.Update(c) 192 return helper.Update(c)
OLDNEW
« no previous file with comments | « masters/master.chromium.lkgr/master.cfg ('k') | masters/master.chromium.lkgr/master_site_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698