| 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 slave import recipe_api | 6 from recipe_engine import recipe_api |
| 7 from infra.libs.infra_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', |
| (...skipping 196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 213 '_'.join(_sanitize_nonalpha(step) for step in steps))) + | 213 '_'.join(_sanitize_nonalpha(step) for step in steps))) + |
| 214 props(mastername=mastername, buildername=buildername) + | 214 props(mastername=mastername, buildername=buildername) + |
| 215 reduce(lambda a, b: a + b, | 215 reduce(lambda a, b: a + b, |
| 216 (api.step_data(step, retcode=1) for step in steps)) | 216 (api.step_data(step, retcode=1) for step in steps)) |
| 217 ) | 217 ) |
| 218 | 218 |
| 219 yield step_failure(mastername='chromium.fyi', | 219 yield step_failure(mastername='chromium.fyi', |
| 220 buildername='Android x64 Builder (dbg)', | 220 buildername='Android x64 Builder (dbg)', |
| 221 steps=['check licenses']) | 221 steps=['check licenses']) |
| 222 | 222 |
| OLD | NEW |