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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |