| 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 149 master_port_alt = 9055 | 149 master_port_alt = 9055 |
| 150 base_app_url = 'https://blink-status.appspot.com' | 150 base_app_url = 'https://blink-status.appspot.com' |
| 151 tree_status_url = base_app_url + '/status' | 151 tree_status_url = base_app_url + '/status' |
| 152 | 152 |
| 153 class ChromiumChrome(_ChromiumBase): | 153 class ChromiumChrome(_ChromiumBase): |
| 154 project_name = 'Chromium Chrome' | 154 project_name = 'Chromium Chrome' |
| 155 master_port = 9056 | 155 master_port = 9056 |
| 156 slave_port = 9157 | 156 slave_port = 9157 |
| 157 master_port_alt = 9058 | 157 master_port_alt = 9058 |
| 158 | 158 |
| 159 class ChromiumPyauto(_ChromiumBase): | 159 class ChromiumChromeDriver(_ChromiumBase): |
| 160 project_name = 'Chromium PyAuto' | 160 project_name = 'Chromium ChromeDriver' |
| 161 master_port = 9016 | 161 master_port = 9016 |
| 162 slave_port = 9116 | 162 slave_port = 9116 |
| 163 master_port_alt = 9216 | 163 master_port_alt = 9216 |
| 164 | 164 |
| 165 class ChromiumEndure(_ChromiumBase): | 165 class ChromiumEndure(_ChromiumBase): |
| 166 project_name = 'Chromium Endure' | 166 project_name = 'Chromium Endure' |
| 167 master_port = 9021 | 167 master_port = 9021 |
| 168 slave_port = 9121 | 168 slave_port = 9121 |
| 169 master_port_alt = 9221 | 169 master_port_alt = 9221 |
| 170 | 170 |
| (...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 528 # Web server base path. | 528 # Web server base path. |
| 529 www_dir_base = "\\\\" + archive_host + "\\www\\" | 529 www_dir_base = "\\\\" + archive_host + "\\www\\" |
| 530 | 530 |
| 531 @staticmethod | 531 @staticmethod |
| 532 def Internal(): | 532 def Internal(): |
| 533 pass | 533 pass |
| 534 | 534 |
| 535 | 535 |
| 536 class Distributed(object): | 536 class Distributed(object): |
| 537 """Not much to describe.""" | 537 """Not much to describe.""" |
| OLD | NEW |