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

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

Issue 1750743002: Change the cronet recipe_module to use bot_update. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Old Expectations. Created 4 years, 9 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
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 recipe_engine.types import freeze 5 from recipe_engine.types import freeze
6 from recipe_engine.recipe_api import Property 6 from recipe_engine.recipe_api import Property
7 7
8 DEPS = [ 8 DEPS = [
9 'cronet', 9 'cronet',
10 'recipe_engine/path', 10 'recipe_engine/path',
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 def GenTests(api): 165 def GenTests(api):
166 for bot_id in BUILDERS.keys(): 166 for bot_id in BUILDERS.keys():
167 props = api.properties.generic( 167 props = api.properties.generic(
168 buildername=bot_id, 168 buildername=bot_id,
169 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00', 169 revision='4f4b02f6b7fa20a3a25682c457bbc8ad589c8a00',
170 repository='https://chromium.googlesource.com/chromium/src', 170 repository='https://chromium.googlesource.com/chromium/src',
171 branch='master', 171 branch='master',
172 project='src', 172 project='src',
173 ) 173 )
174 yield api.test(_sanitize_nonalpha(bot_id)) + props 174 yield api.test(_sanitize_nonalpha(bot_id)) + props
175
176 yield (
177 api.test('cronet_try') +
178 api.properties.tryserver(buildername="android_cronet_tester")
179 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698