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

Unified Diff: configs/chromium/master/master.cfg

Issue 648353002: Remove Skia's forked buildbot code (Closed) Base URL: https://skia.googlesource.com/buildbot.git@master
Patch Set: Address comment Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « configs/chromium/master/buildbot.tac ('k') | configs/chromium/master/master_mac_latest_cfg.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: configs/chromium/master/master.cfg
diff --git a/configs/chromium/master/master.cfg b/configs/chromium/master/master.cfg
deleted file mode 100644
index 3f3857495b12b5cc56fb997aec08662ff60141ef..0000000000000000000000000000000000000000
--- a/configs/chromium/master/master.cfg
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright (c) 2011 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from master import master_utils
-from master import slaves_list
-
-import config
-
-ActiveMaster = config.Master.ChromiumFYI
-
-c = BuildmasterConfig = {}
-c['change_source'] = []
-c['schedulers'] = []
-c['builders'] = []
-c['status'] = []
-
-
-import master_source_cfg
-import master_mac_latest_cfg
-
-master_source_cfg.Update(config, ActiveMaster, c)
-master_mac_latest_cfg.Update(config, ActiveMaster, c)
-
-c['logCompressionLimit'] = False
-c['projectName'] = ActiveMaster.project_name
-c['projectURL'] = config.Master.project_url
-c['buildbotURL'] = 'http://build.chromium.org/p/chromium.fyi/'
-
-# Associate the slaves to the manual builders. The configuration is in
-# slaves.cfg.
-slaves = slaves_list.SlavesList('slaves.cfg', 'ChromiumFYI')
-for builder in c['builders']:
- builder['slavenames'] = slaves.GetSlavesName(builder=builder['name'])
-
-# The 'slaves' list defines the set of allowable buildslaves. List all the
-# slaves registered to a builder. Remove dupes.
-c['slaves'] = master_utils.AutoSetupSlaves(c['builders'],
- config.Master.GetBotPassword())
-master_utils.VerifySetup(c, slaves)
-
-# Adds common status and tools to this master.
-master_utils.AutoSetupMaster(
- c, ActiveMaster,
- public_html="../../../third_party/chromium_buildbot/masters/master.chromium/public_html")
« no previous file with comments | « configs/chromium/master/buildbot.tac ('k') | configs/chromium/master/master_mac_latest_cfg.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698