OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 | 10 |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
210 class ChromiumOS(_Base): | 210 class ChromiumOS(_Base): |
211 project_name = 'ChromiumOS' | 211 project_name = 'ChromiumOS' |
212 master_port = 9030 | 212 master_port = 9030 |
213 slave_port = 9127 | 213 slave_port = 9127 |
214 master_port_alt = 9043 | 214 master_port_alt = 9043 |
215 base_app_url = 'http://localhost:8080' | 215 base_app_url = 'http://localhost:8080' |
216 tree_status_url = base_app_url + '/status' | 216 tree_status_url = base_app_url + '/status' |
217 store_revisions_url = base_app_url + '/revisions' | 217 store_revisions_url = base_app_url + '/revisions' |
218 last_good_url = 'http://chromiumos-status.appspot.com/lkgr' | 218 last_good_url = 'http://chromiumos-status.appspot.com/lkgr' |
219 | 219 |
| 220 class ChromiumOSTryServer(_Base): |
| 221 project_name = 'ChromiumOS Try Server' |
| 222 master_port = 9051 |
| 223 slave_port = 9153 |
| 224 master_port_alt = 9063 |
| 225 repo_url = 'http://git.chromium.org/chromiumos/tryjobs.git' |
| 226 |
220 ## V8 | 227 ## V8 |
221 | 228 |
222 class V8(_Base): | 229 class V8(_Base): |
223 project_name = 'V8' | 230 project_name = 'V8' |
224 master_host = 'localhost' | 231 master_host = 'localhost' |
225 master_port = 9030 | 232 master_port = 9030 |
226 slave_port = 9131 | 233 slave_port = 9131 |
227 master_port_alt = 9043 | 234 master_port_alt = 9043 |
228 server_url = 'http://v8.googlecode.com' | 235 server_url = 'http://v8.googlecode.com' |
229 project_url = 'http://v8.googlecode.com' | 236 project_url = 'http://v8.googlecode.com' |
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
377 # Web server base path. | 384 # Web server base path. |
378 www_dir_base = "\\\\" + archive_host + "\\www\\" | 385 www_dir_base = "\\\\" + archive_host + "\\www\\" |
379 | 386 |
380 @staticmethod | 387 @staticmethod |
381 def Internal(): | 388 def Internal(): |
382 pass | 389 pass |
383 | 390 |
384 | 391 |
385 class Distributed(object): | 392 class Distributed(object): |
386 """Not much to describe.""" | 393 """Not much to describe.""" |
OLD | NEW |