Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(190)

Side by Side Diff: site_config/config.py

Issue 14383021: Break config_default into master_site_configs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebase Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'icudt38.dll', 73 'icudt38.dll',
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
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
90 class Distributed(config_private.Distributed):
91 # File holding current version information.
92 version_file = 'VERSION'
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698