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

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

Issue 1151423002: Move recipe engine to third_party/recipe_engine. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved field_composer_test with its buddies Created 5 years, 6 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 types 5 import types
6 6
7 from common import cros_chromite 7 from common import cros_chromite
8 from slave.recipe_config import config_item_context, ConfigGroup 8 from recipe_engine.config import config_item_context, ConfigGroup
9 from slave.recipe_config import Dict, Single, Set 9 from recipe_engine.config import Dict, Single, Set
10 10
11 import DEPS 11 import DEPS
12 path_api = DEPS['path'].api 12 path_api = DEPS['path'].api
13 13
14 14
15 def BaseConfig(**_kwargs): 15 def BaseConfig(**_kwargs):
16 return ConfigGroup( 16 return ConfigGroup(
17 # Base mapping of repository key to repository name. 17 # Base mapping of repository key to repository name.
18 repositories = Dict(value_type=Set(basestring)), 18 repositories = Dict(value_type=Set(basestring)),
19 19
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
88 88
89 @config_ctx() 89 @config_ctx()
90 def chromeos_tryserver_etc(c): 90 def chromeos_tryserver_etc(c):
91 c.cbb.clobber = True 91 c.cbb.clobber = True
92 92
93 @config_ctx() 93 @config_ctx()
94 def chromiumos_coverage_test(c): 94 def chromiumos_coverage_test(c):
95 c.use_chrome_version = True 95 c.use_chrome_version = True
96 c.read_cros_manifest = True 96 c.read_cros_manifest = True
97 c.cbb.chrome_rev = 'stable' 97 c.cbb.chrome_rev = 'stable'
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromite/api.py ('k') | scripts/slave/recipe_modules/chromium/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698