| 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 10 matching lines...) Expand all Loading... |
| 21 webkit_root_url = 'http://svn.webkit.org/repository/webkit' | 21 webkit_root_url = 'http://svn.webkit.org/repository/webkit' |
| 22 | 22 |
| 23 # Other non-redistributable repositories. | 23 # Other non-redistributable repositories. |
| 24 repo_root_internal = None | 24 repo_root_internal = None |
| 25 trunk_internal_url = None | 25 trunk_internal_url = None |
| 26 trunk_internal_url_src = None | 26 trunk_internal_url_src = None |
| 27 gears_url_internal = None | 27 gears_url_internal = None |
| 28 o3d_url_internal = None | 28 o3d_url_internal = None |
| 29 nacl_trunk_url_internal = None | 29 nacl_trunk_url_internal = None |
| 30 nacl_url_internal = None | 30 nacl_url_internal = None |
| 31 syzygy_url = None |
| 31 | 32 |
| 32 # Actually for Chromium OS slaves. | 33 # Actually for Chromium OS slaves. |
| 33 chromeos_url = git_server_url + '/chromiumos.git' | 34 chromeos_url = git_server_url + '/chromiumos.git' |
| 34 chromeos_internal_url = None | 35 chromeos_internal_url = None |
| 35 | 36 |
| 36 # Please change this accordingly. | 37 # Please change this accordingly. |
| 37 master_domain = 'example.com' | 38 master_domain = 'example.com' |
| 38 permitted_domains = ('example.com',) | 39 permitted_domains = ('example.com',) |
| 39 | 40 |
| 40 # Your smtp server to enable mail notifications. | 41 # Your smtp server to enable mail notifications. |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 # Web server base path. | 267 # Web server base path. |
| 267 www_dir_base = "\\\\" + archive_host + "\\www\\" | 268 www_dir_base = "\\\\" + archive_host + "\\www\\" |
| 268 | 269 |
| 269 @staticmethod | 270 @staticmethod |
| 270 def Internal(): | 271 def Internal(): |
| 271 pass | 272 pass |
| 272 | 273 |
| 273 | 274 |
| 274 class Distributed(object): | 275 class Distributed(object): |
| 275 """Not much to describe.""" | 276 """Not much to describe.""" |
| OLD | NEW |