| OLD | NEW |
| 1 # Copyright 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 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 """Seeds a number of variables defined in chromium_config.py. | 5 """Seeds a number of variables defined in chromium_config.py. |
| 6 | 6 |
| 7 The recommended way is to fork this file and use a custom DEPS forked from | 7 The recommended way is to fork this file and use a custom DEPS forked from |
| 8 config/XXX/DEPS with the right configuration data.""" | 8 config/XXX/DEPS with the right configuration data.""" |
| 9 | 9 |
| 10 import socket | 10 import socket |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 115 """Client master.""" | 115 """Client master.""" |
| 116 master_host = 'master3.golo.chromium.org' | 116 master_host = 'master3.golo.chromium.org' |
| 117 tree_closing_notification_recipients = [] | 117 tree_closing_notification_recipients = [] |
| 118 from_address = 'buildbot@chromium.org' | 118 from_address = 'buildbot@chromium.org' |
| 119 | 119 |
| 120 class Master4(Base): | 120 class Master4(Base): |
| 121 """Try server master.""" | 121 """Try server master.""" |
| 122 master_host = 'master4.golo.chromium.org' | 122 master_host = 'master4.golo.chromium.org' |
| 123 tree_closing_notification_recipients = [] | 123 tree_closing_notification_recipients = [] |
| 124 from_address = 'tryserver@chromium.org' | 124 from_address = 'tryserver@chromium.org' |
| 125 code_review_site = 'https://chromiumcodereview.appspot.com' | 125 code_review_site = 'https://codereview.chromium.org' |
| 126 | 126 |
| 127 ## Native Client related | 127 ## Native Client related |
| 128 | 128 |
| 129 class NaClBase(Master3): | 129 class NaClBase(Master3): |
| 130 """Base class for Native Client masters.""" | 130 """Base class for Native Client masters.""" |
| 131 tree_closing_notification_recipients = ['bradnelson@chromium.org'] | 131 tree_closing_notification_recipients = ['bradnelson@chromium.org'] |
| 132 base_app_url = 'https://nativeclient-status.appspot.com' | 132 base_app_url = 'https://nativeclient-status.appspot.com' |
| 133 tree_status_url = base_app_url + '/status' | 133 tree_status_url = base_app_url + '/status' |
| 134 store_revisions_url = base_app_url + '/revisions' | 134 store_revisions_url = base_app_url + '/revisions' |
| 135 last_good_url = base_app_url + '/lkgr' | 135 last_good_url = base_app_url + '/lkgr' |
| (...skipping 30 matching lines...) Expand all Loading... |
| 166 # Web server base path. | 166 # Web server base path. |
| 167 www_dir_base = "\\\\" + archive_host + "\\www\\" | 167 www_dir_base = "\\\\" + archive_host + "\\www\\" |
| 168 | 168 |
| 169 @staticmethod | 169 @staticmethod |
| 170 def Internal(): | 170 def Internal(): |
| 171 pass | 171 pass |
| 172 | 172 |
| 173 | 173 |
| 174 class Distributed(object): | 174 class Distributed(object): |
| 175 """Not much to describe.""" | 175 """Not much to describe.""" |
| OLD | NEW |