OLD | NEW |
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 recipe_engine.types import freeze | 7 from infra.libs.infra_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 Loading... |
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 |
OLD | NEW |