| 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 """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 21 matching lines...) Expand all Loading... |
| 32 o3d_url_internal = None | 32 o3d_url_internal = None |
| 33 nacl_trunk_url_internal = None | 33 nacl_trunk_url_internal = None |
| 34 nacl_url_internal = None | 34 nacl_url_internal = None |
| 35 | 35 |
| 36 syzygy_internal_url = None | 36 syzygy_internal_url = None |
| 37 | 37 |
| 38 swarm_server_internal_url = 'fake.swarm.url.server' | 38 swarm_server_internal_url = 'fake.swarm.url.server' |
| 39 swarm_unix_hashtable_internal = '/path/to/fake/directory' | 39 swarm_unix_hashtable_internal = '/path/to/fake/directory' |
| 40 swarm_windows_hashtable_internal = 'X:\\path\\to\\fake\\directory' | 40 swarm_windows_hashtable_internal = 'X:\\path\\to\\fake\\directory' |
| 41 swarm_windows_network_path_vm1_internal = '\\\\fake\\network\\path' | 41 swarm_windows_network_path_vm1_internal = '\\\\fake\\network\\path' |
| 42 swarm_windows_network_path_vm4_internal = '\\\\fake\\network\\path' |
| 42 swarm_data_server_vm1_internal = 'fake.swarm.data.server' | 43 swarm_data_server_vm1_internal = 'fake.swarm.data.server' |
| 44 swarm_data_server_vm2_internal = 'fake.swarm.data.server' |
| 43 | 45 |
| 44 # Actually for Chromium OS slaves. | 46 # Actually for Chromium OS slaves. |
| 45 chromeos_url = git_server_url + '/chromiumos.git' | 47 chromeos_url = git_server_url + '/chromiumos.git' |
| 46 chromeos_internal_url = None | 48 chromeos_internal_url = None |
| 47 | 49 |
| 48 # Please change this accordingly. | 50 # Please change this accordingly. |
| 49 master_domain = 'example.com' | 51 master_domain = 'example.com' |
| 50 permitted_domains = ('example.com',) | 52 permitted_domains = ('example.com',) |
| 51 | 53 |
| 52 # Your smtp server to enable mail notifications. | 54 # Your smtp server to enable mail notifications. |
| (...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 # Web server base path. | 429 # Web server base path. |
| 428 www_dir_base = "\\\\" + archive_host + "\\www\\" | 430 www_dir_base = "\\\\" + archive_host + "\\www\\" |
| 429 | 431 |
| 430 @staticmethod | 432 @staticmethod |
| 431 def Internal(): | 433 def Internal(): |
| 432 pass | 434 pass |
| 433 | 435 |
| 434 | 436 |
| 435 class Distributed(object): | 437 class Distributed(object): |
| 436 """Not much to describe.""" | 438 """Not much to describe.""" |
| OLD | NEW |