| 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 """Declares a number of site-dependent variables for use by scripts. | 5 """Declares a number of site-dependent variables for use by scripts. |
| 6 | 6 |
| 7 A typical use of this module would be | 7 A typical use of this module would be |
| 8 | 8 |
| 9 import chromium_config as config | 9 import chromium_config as config |
| 10 | 10 |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 'icudt42.dll', | 74 'icudt42.dll', |
| 75 'icudt46.dll', | 75 'icudt46.dll', |
| 76 'plugins\\npapi_layout_test_plugin.dll', | 76 'plugins\\npapi_layout_test_plugin.dll', |
| 77 ] | 77 ] |
| 78 | 78 |
| 79 # Archive everything in these directories, using glob. | 79 # Archive everything in these directories, using glob. |
| 80 test_dirs_to_archive = ['fonts'] | 80 test_dirs_to_archive = ['fonts'] |
| 81 # Create these directories, initially empty, in the archive. | 81 # Create these directories, initially empty, in the archive. |
| 82 test_dirs_to_create = ['plugins', 'fonts'] | 82 test_dirs_to_create = ['plugins', 'fonts'] |
| 83 | 83 |
| 84 # Directories in which to store built files, for dev, official, and full | |
| 85 # builds. | |
| 86 archive_host = config_private.Archive.archive_host | |
| 87 www_dir_base = config_private.Archive.www_dir_base | |
| 88 | |
| 89 | 84 |
| 90 class Distributed(config_private.Distributed): | 85 class Distributed(config_private.Distributed): |
| 91 # File holding current version information. | 86 # File holding current version information. |
| 92 version_file = 'VERSION' | 87 version_file = 'VERSION' |
| OLD | NEW |