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

Side by Side Diff: site_config/config_bootstrap.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
« no previous file with comments | « scripts/master/factory/v8_commands.py ('k') | site_config/config_default.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) 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 """ 5 """
6 Site configuration information that is sufficient to configure a slave, 6 Site configuration information that is sufficient to configure a slave,
7 without loading any buildbot or twisted code. 7 without loading any buildbot or twisted code.
8 """ 8 """
9 9
10 import os 10 import os
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 es5conform_root_url = "https://es5conform.svn.codeplex.com/svn/" 47 es5conform_root_url = "https://es5conform.svn.codeplex.com/svn/"
48 es5conform_revision = 62998 48 es5conform_revision = 62998
49 49
50 dart_url = 'http://dart.googlecode.com/svn' 50 dart_url = 'http://dart.googlecode.com/svn'
51 dart_bleeding = dart_url + '/branches/bleeding_edge' 51 dart_bleeding = dart_url + '/branches/bleeding_edge'
52 dart_trunk = dart_url + '/trunk' 52 dart_trunk = dart_url + '/trunk'
53 53
54 skia_url = 'http://skia.googlecode.com/svn/' 54 skia_url = 'http://skia.googlecode.com/svn/'
55 55
56 syzygy_url = 'http://sawbuck.googlecode.com/svn/' 56 syzygy_url = 'http://sawbuck.googlecode.com/svn/'
57 syzygy_internal_url = config_private.Master.syzygy_internal_url
58 57
59 webrtc_url = 'http://webrtc.googlecode.com/svn' 58 webrtc_url = 'http://webrtc.googlecode.com/svn'
60 libyuv_url = 'http://libyuv.googlecode.com/svn' 59 libyuv_url = 'http://libyuv.googlecode.com/svn'
61 libjingle_url = 'http://libjingle.googlecode.com/svn' 60 libjingle_url = 'http://libjingle.googlecode.com/svn'
62 61
63 # Default target platform if none was given to the factory. 62 # Default target platform if none was given to the factory.
64 default_platform = 'win32' 63 default_platform = 'win32'
65 64
66 # Used by the waterfall display. 65 # Used by the waterfall display.
67 project_url = 'http://www.chromium.org' 66 project_url = 'http://www.chromium.org'
(...skipping 30 matching lines...) Expand all
98 We can't both make this a property and also keep it static unless we use a 97 We can't both make this a property and also keep it static unless we use a
99 <metaclass, which is overkill for this usage. 98 <metaclass, which is overkill for this usage.
100 """ 99 """
101 # Note: could be overriden by config_private. 100 # Note: could be overriden by config_private.
102 if not getattr(Master, 'bot_password', None): 101 if not getattr(Master, 'bot_password', None):
103 # If the bot_password has been requested, the file is required to exist 102 # If the bot_password has been requested, the file is required to exist
104 # if not overriden in config_private. 103 # if not overriden in config_private.
105 bot_password_path = os.path.join(BASE_DIR, '.bot_password') 104 bot_password_path = os.path.join(BASE_DIR, '.bot_password')
106 Master.bot_password = open(bot_password_path).read().strip('\n\r') 105 Master.bot_password = open(bot_password_path).read().strip('\n\r')
107 return Master.bot_password 106 return Master.bot_password
OLDNEW
« no previous file with comments | « scripts/master/factory/v8_commands.py ('k') | site_config/config_default.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698