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

Side by Side Diff: masters/master.devtools/master.cfg

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) 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 buildbot.changes import svnpoller 5 from buildbot.changes import svnpoller
6 from buildbot.scheduler import Scheduler 6 from buildbot.scheduler import Scheduler
7 from master import build_utils 7 from master import build_utils
8 from master import master_utils 8 from master import master_utils
9 from master import slaves_list 9 from master import slaves_list
10 from master.factory import chromium_factory 10 from master.factory import chromium_factory
11 11
12 import config 12 import config
13 import master_site_config
13 14
14 ActiveMaster = config.Master.DevTools 15 ActiveMaster = master_site_config.DevTools
15 16
16 c = BuildmasterConfig = {} 17 c = BuildmasterConfig = {}
17 c['status'] = [] 18 c['status'] = []
18 19
19 20
20 def ChromeTreeFileSplitter(path): 21 def ChromeTreeFileSplitter(path):
21 """split_file for the 'src' project in the trunk.""" 22 """split_file for the 'src' project in the trunk."""
22 23
23 # Exclude .DEPS.git from triggering builds on chrome. 24 # Exclude .DEPS.git from triggering builds on chrome.
24 if path == 'src/.DEPS.git': 25 if path == 'src/.DEPS.git':
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 c['slaves'] = master_utils.AutoSetupSlaves(c['builders'], 165 c['slaves'] = master_utils.AutoSetupSlaves(c['builders'],
165 config.Master.GetBotPassword()) 166 config.Master.GetBotPassword())
166 master_utils.VerifySetup(c, slaves) 167 master_utils.VerifySetup(c, slaves)
167 168
168 # Adds common status and tools to this master. 169 # Adds common status and tools to this master.
169 master_utils.AutoSetupMaster(c, ActiveMaster, 170 master_utils.AutoSetupMaster(c, ActiveMaster,
170 public_html='../master.chromium/public_html', 171 public_html='../master.chromium/public_html',
171 templates=['../master.chromium/templates'], 172 templates=['../master.chromium/templates'],
172 order_console_by_time=True, 173 order_console_by_time=True,
173 enable_http_status_push=ActiveMaster.is_production_host) 174 enable_http_status_push=ActiveMaster.is_production_host)
OLDNEW
« no previous file with comments | « masters/master.client.webrtc/master_site_config.py ('k') | masters/master.devtools/master_site_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698