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

Side by Side Diff: scripts/slave/recipe_modules/chromite/config.py

Issue 1345143004: CrOS: Use local Chromite checkout for configs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebased, comments, more useful expectations. Created 5 years, 2 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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 import os 5 import os
6 import types 6 import types
7 7
8 from common import cros_chromite
9 from recipe_engine.config import config_item_context, ConfigGroup 8 from recipe_engine.config import config_item_context, ConfigGroup
10 from recipe_engine.config import Dict, Single, Set 9 from recipe_engine.config import Dict, Single, Set
11 10
12 import DEPS 11 import DEPS
13 path_api = DEPS['path'].api 12 path_api = DEPS['path'].api
14 13
15 14
16 def BaseConfig(CBB_CONFIG=None, CBB_BRANCH=None, CBB_BUILD_NUMBER=None, 15 def BaseConfig(CBB_CONFIG=None, CBB_BRANCH=None, CBB_BUILD_NUMBER=None,
17 CBB_DEBUG=False, CBB_CLOBBER=False, **_kwargs): 16 CBB_DEBUG=False, CBB_CLOBBER=False, **_kwargs):
18 return ConfigGroup( 17 return ConfigGroup(
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 132
134 @config_ctx(group='master', includes=['external']) 133 @config_ctx(group='master', includes=['external'])
135 def chromiumos_tryserver(c): 134 def chromiumos_tryserver(c):
136 c.cbb.disable_bootstrap = True 135 c.cbb.disable_bootstrap = True
137 136
138 @config_ctx() 137 @config_ctx()
139 def chromiumos_coverage_test(c): 138 def chromiumos_coverage_test(c):
140 c.use_chrome_version = True 139 c.use_chrome_version = True
141 c.read_cros_manifest = True 140 c.read_cros_manifest = True
142 c.cbb.chrome_rev = 'stable' 141 c.cbb.chrome_rev = 'stable'
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromite/api.py ('k') | scripts/slave/recipe_modules/chromite/example.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698