OLD | NEW |
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 es5conform_root_url = "https://es5conform.svn.codeplex.com/svn/" | 45 es5conform_root_url = "https://es5conform.svn.codeplex.com/svn/" |
46 es5conform_revision = 62998 | 46 es5conform_revision = 62998 |
47 | 47 |
48 dart_url = 'http://dart.googlecode.com/svn' | 48 dart_url = 'http://dart.googlecode.com/svn' |
49 dart_bleeding = dart_url + '/branches/bleeding_edge' | 49 dart_bleeding = dart_url + '/branches/bleeding_edge' |
50 dart_trunk = dart_url + '/trunk' | 50 dart_trunk = dart_url + '/trunk' |
51 | 51 |
52 skia_url = 'http://skia.googlecode.com/svn/' | 52 skia_url = 'http://skia.googlecode.com/svn/' |
53 | 53 |
54 syzygy_url = 'http://sawbuck.googlecode.com/svn/' | 54 syzygy_url = 'http://sawbuck.googlecode.com/svn/' |
55 syzygy_internal_url = config_private.Master.syzygy_internal_url | |
56 | 55 |
57 webrtc_url = 'http://webrtc.googlecode.com/svn' | 56 webrtc_url = 'http://webrtc.googlecode.com/svn' |
58 libyuv_url = 'http://libyuv.googlecode.com/svn' | 57 libyuv_url = 'http://libyuv.googlecode.com/svn' |
59 libjingle_url = 'http://libjingle.googlecode.com/svn' | 58 libjingle_url = 'http://libjingle.googlecode.com/svn' |
60 | 59 |
61 # Default target platform if none was given to the factory. | 60 # Default target platform if none was given to the factory. |
62 default_platform = 'win32' | 61 default_platform = 'win32' |
63 | 62 |
64 # Used by the waterfall display. | 63 # Used by the waterfall display. |
65 project_url = 'http://www.chromium.org' | 64 project_url = 'http://www.chromium.org' |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 <metaclass, which is overkill for this usage. | 96 <metaclass, which is overkill for this usage. |
98 """ | 97 """ |
99 # Note: could be overriden by config_private. | 98 # Note: could be overriden by config_private. |
100 if not getattr(Master, 'bot_password', None): | 99 if not getattr(Master, 'bot_password', None): |
101 # If the bot_password has been requested, the file is required to exist | 100 # If the bot_password has been requested, the file is required to exist |
102 # if not overriden in config_private. | 101 # if not overriden in config_private. |
103 bot_password_path = os.path.join(os.path.dirname(__file__), | 102 bot_password_path = os.path.join(os.path.dirname(__file__), |
104 '.bot_password') | 103 '.bot_password') |
105 Master.bot_password = open(bot_password_path).read().strip('\n\r') | 104 Master.bot_password = open(bot_password_path).read().strip('\n\r') |
106 return Master.bot_password | 105 return Master.bot_password |
OLD | NEW |