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

Side by Side Diff: scripts/slave/recipes/android/builder.py

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Change to googlesource 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 contextlib import contextmanager 5 from contextlib import contextmanager
6 from recipe_engine import recipe_api 6 from recipe_engine import recipe_api
7 from infra.libs.infra_types import freeze 7 from recipe_engine.types import freeze
8 8
9 DEPS = [ 9 DEPS = [
10 'chromium', 10 'chromium',
11 'chromium_android', 11 'chromium_android',
12 'bot_update', 12 'bot_update',
13 'gclient', 13 'gclient',
14 'path', 14 'path',
15 'properties', 15 'properties',
16 'step', 16 'step',
17 'tryserver', 17 'tryserver',
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
226 '_'.join(_sanitize_nonalpha(step) for step in steps))) + 226 '_'.join(_sanitize_nonalpha(step) for step in steps))) +
227 props(mastername=mastername, buildername=buildername) + 227 props(mastername=mastername, buildername=buildername) +
228 reduce(lambda a, b: a + b, 228 reduce(lambda a, b: a + b,
229 (api.step_data(step, retcode=1) for step in steps)) 229 (api.step_data(step, retcode=1) for step in steps))
230 ) 230 )
231 231
232 yield step_failure(mastername='chromium.fyi', 232 yield step_failure(mastername='chromium.fyi',
233 buildername='Android x64 Builder (dbg)', 233 buildername='Android x64 Builder (dbg)',
234 steps=['check licenses']) 234 steps=['check licenses'])
235 235
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698