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

Side by Side Diff: scripts/slave/recipes/cronet.py

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Roll to latest recipes-py Created 5 years, 3 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 from infra.libs.infra_types import freeze 5 from recipe_engine.types import freeze
6 6
7 DEPS = [ 7 DEPS = [
8 'cronet', 8 'cronet',
9 'path', 9 'path',
10 'properties', 10 'properties',
11 ] 11 ]
12 12
13 BUILDERS = freeze({ 13 BUILDERS = freeze({
14 'local_test': { 14 'local_test': {
15 'recipe_config': 'main_builder', 15 'recipe_config': 'main_builder',
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 def GenTests(api): 149 def GenTests(api):
150 for bot_id in BUILDERS.keys(): 150 for bot_id in BUILDERS.keys():
151 props = api.properties.generic( 151 props = api.properties.generic(
152 buildername=bot_id, 152 buildername=bot_id,
153 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', 153 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00',
154 repository='https://chromium.googlesource.com/chromium/src', 154 repository='https://chromium.googlesource.com/chromium/src',
155 branch='master', 155 branch='master',
156 project='src', 156 project='src',
157 ) 157 )
158 yield api.test(_sanitize_nonalpha(bot_id)) + props 158 yield api.test(_sanitize_nonalpha(bot_id)) + props
OLDNEW
« no previous file with comments | « scripts/slave/recipes/chromium_trybot_legacy.py ('k') | scripts/slave/recipes/dart/dartium_perf.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698