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

Side by Side Diff: masters/master.client.nacl.chrome/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 # -*- python -*- 1 # -*- python -*-
2 # ex: set syntax=python: 2 # ex: set syntax=python:
3 3
4 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 # Use of this source code is governed by a BSD-style license that can be 5 # Use of this source code is governed by a BSD-style license that can be
6 # found in the LICENSE file. 6 # found in the LICENSE file.
7 7
8 # This is the buildmaster config file for the 'nacl' bot. It must 8 # This is the buildmaster config file for the 'nacl' bot. It must
9 # be installed as 'master.cfg' in your buildmaster's base directory 9 # be installed as 'master.cfg' in your buildmaster's base directory
10 # (although the filename can be changed with the --basedir option to 10 # (although the filename can be changed with the --basedir option to
(...skipping 12 matching lines...) Expand all
23 23
24 from buildbot.changes import svnpoller 24 from buildbot.changes import svnpoller
25 from buildbot.scheduler import Scheduler 25 from buildbot.scheduler import Scheduler
26 from buildbot.scheduler import Triggerable 26 from buildbot.scheduler import Triggerable
27 27
28 from master import master_utils 28 from master import master_utils
29 from master import slaves_list 29 from master import slaves_list
30 from master.factory import chromium_factory 30 from master.factory import chromium_factory
31 31
32 import config 32 import config
33 import master_site_config
33 34
34 ActiveMaster = config.Master.NativeClientChrome 35 ActiveMaster = master_site_config.NativeClientChrome
35 36
36 TREE_GATE_KEEPER = False 37 TREE_GATE_KEEPER = False
37 GOOD_REVISIONS = False 38 GOOD_REVISIONS = False
38 39
39 # This is the dictionary that the buildmaster pays attention to. We also use 40 # This is the dictionary that the buildmaster pays attention to. We also use
40 # a shorter alias to save typing. 41 # a shorter alias to save typing.
41 c = BuildmasterConfig = {} 42 c = BuildmasterConfig = {}
42 43
43 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host) 44 config.DatabaseSetup(c, require_dbconfig=ActiveMaster.is_production_host)
44 45
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
297 ] 298 ]
298 c['status'].append(goodrevisions.GoodRevisions( 299 c['status'].append(goodrevisions.GoodRevisions(
299 good_revision_steps={'': all_steps}, 300 good_revision_steps={'': all_steps},
300 store_revisions_url=ActiveMaster.store_revisions_url)) 301 store_revisions_url=ActiveMaster.store_revisions_url))
301 302
302 303
303 ####### PROJECT IDENTITY 304 ####### PROJECT IDENTITY
304 305
305 # Buildbot master url: 306 # Buildbot master url:
306 c['buildbotURL'] = 'http://build.chromium.org/p/client.nacl.chrome/' 307 c['buildbotURL'] = 'http://build.chromium.org/p/client.nacl.chrome/'
OLDNEW
« no previous file with comments | « masters/master.client.libyuv/master_site_config.py ('k') | masters/master.client.nacl.chrome/master_site_config.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698