| 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 | 10 |
| (...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 # | 106 # |
| 107 # This url is used for HttpStatusPush: | 107 # This url is used for HttpStatusPush: |
| 108 base_app_url = 'http://localhost:8080' | 108 base_app_url = 'http://localhost:8080' |
| 109 # HTTP url that should return 0 or 1, depending if the tree is open or | 109 # HTTP url that should return 0 or 1, depending if the tree is open or |
| 110 # closed. It is also used as POST to update the tree status. | 110 # closed. It is also used as POST to update the tree status. |
| 111 tree_status_url = base_app_url + '/status' | 111 tree_status_url = base_app_url + '/status' |
| 112 # Used by LKGR to POST data. | 112 # Used by LKGR to POST data. |
| 113 store_revisions_url = base_app_url + '/revisions' | 113 store_revisions_url = base_app_url + '/revisions' |
| 114 # Used by the try server to sync to the last known good revision: | 114 # Used by the try server to sync to the last known good revision: |
| 115 last_good_url = 'http://chromium-status.appspot.com/lkgr' | 115 last_good_url = 'http://chromium-status.appspot.com/lkgr' |
| 116 last_good_blink_url = 'http://blink-status.appspot.com/lkgr' |
| 116 | 117 |
| 117 class Chromium(_ChromiumBase): | 118 class Chromium(_ChromiumBase): |
| 118 # Used by the waterfall display. | 119 # Used by the waterfall display. |
| 119 project_name = 'Chromium' | 120 project_name = 'Chromium' |
| 120 master_port = 9010 | 121 master_port = 9010 |
| 121 slave_port = 9112 | 122 slave_port = 9112 |
| 122 master_port_alt = 9014 | 123 master_port_alt = 9014 |
| 123 | 124 |
| 124 class ChromiumFYI(_ChromiumBase): | 125 class ChromiumFYI(_ChromiumBase): |
| 125 project_name = 'Chromium FYI' | 126 project_name = 'Chromium FYI' |
| (...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 # Web server base path. | 516 # Web server base path. |
| 516 www_dir_base = "\\\\" + archive_host + "\\www\\" | 517 www_dir_base = "\\\\" + archive_host + "\\www\\" |
| 517 | 518 |
| 518 @staticmethod | 519 @staticmethod |
| 519 def Internal(): | 520 def Internal(): |
| 520 pass | 521 pass |
| 521 | 522 |
| 522 | 523 |
| 523 class Distributed(object): | 524 class Distributed(object): |
| 524 """Not much to describe.""" | 525 """Not much to describe.""" |
| OLD | NEW |