| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Declares a number of site-dependent variables for use by scripts. | 6 """Declares a number of site-dependent variables for use by scripts. |
| 7 | 7 |
| 8 A typical use of this module would be | 8 A typical use of this module would be |
| 9 | 9 |
| 10 import chromium_config as config | 10 import chromium_config as config |
| (...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 test_dirs_to_archive = ['fonts'] | 179 test_dirs_to_archive = ['fonts'] |
| 180 # Create these directories, initially empty, in the archive. | 180 # Create these directories, initially empty, in the archive. |
| 181 test_dirs_to_create = ['plugins', 'fonts'] | 181 test_dirs_to_create = ['plugins', 'fonts'] |
| 182 | 182 |
| 183 # URLs to pass to breakpad/symupload.exe. | 183 # URLs to pass to breakpad/symupload.exe. |
| 184 symbol_url = 'not available' | 184 symbol_url = 'not available' |
| 185 symbol_staging_url = 'not available' | 185 symbol_staging_url = 'not available' |
| 186 | 186 |
| 187 # Directories in which to store built files, for dev, official, and full | 187 # Directories in which to store built files, for dev, official, and full |
| 188 # builds. (We don't use the full ones yet.) | 188 # builds. (We don't use the full ones yet.) |
| 189 archive_host = chromium_config_private.Archive.archive_host |
| 189 www_dir_base_dev = chromium_config_private.Archive.www_dir_base + 'snapshots' | 190 www_dir_base_dev = chromium_config_private.Archive.www_dir_base + 'snapshots' |
| 190 www_dir_base_official = ( | 191 www_dir_base_official = ( |
| 191 chromium_config_private.Archive.www_dir_base + 'official_builds') | 192 chromium_config_private.Archive.www_dir_base + 'official_builds') |
| 192 www_dir_base_full = 'unused' | 193 www_dir_base_full = 'unused' |
| 193 symbol_dir_base_dev = www_dir_base_dev | 194 symbol_dir_base_dev = www_dir_base_dev |
| 194 symbol_dir_base_full = www_dir_base_full | 195 symbol_dir_base_full = www_dir_base_full |
| 195 symbol_dir_base_official = www_dir_base_official | 196 symbol_dir_base_official = www_dir_base_official |
| 196 | 197 |
| 197 # Where to find layout test results by default, above the build directory. | 198 # Where to find layout test results by default, above the build directory. |
| 198 layout_test_result_dir = 'layout-test-results' | 199 layout_test_result_dir = 'layout-test-results' |
| (...skipping 21 matching lines...) Expand all Loading... |
| 220 | 221 |
| 221 # Any URLs found in IRC topics will be passed as %s to this format before | 222 # Any URLs found in IRC topics will be passed as %s to this format before |
| 222 # being added to the topic-list page. It must contain exactly one "%s" token. | 223 # being added to the topic-list page. It must contain exactly one "%s" token. |
| 223 # To disable URL mangling, set this to "%s". | 224 # To disable URL mangling, set this to "%s". |
| 224 href_redirect_format = 'http://www.google.com/url?sa=D&q=%s' | 225 href_redirect_format = 'http://www.google.com/url?sa=D&q=%s' |
| 225 | 226 |
| 226 | 227 |
| 227 class Distributed(chromium_config_private.Distributed): | 228 class Distributed(chromium_config_private.Distributed): |
| 228 # File holding current version information. | 229 # File holding current version information. |
| 229 version_file = Installer.version_file | 230 version_file = Installer.version_file |
| OLD | NEW |