OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 DEPS = [ | 5 DEPS = [ |
6 'depot_tools/bot_update', | 6 'depot_tools/bot_update', |
7 'chromium', | 7 'chromium', |
8 'depot_tools/gclient', | 8 'depot_tools/gclient', |
| 9 'depot_tools/infra_paths', |
9 'recipe_engine/path', | 10 'recipe_engine/path', |
10 'recipe_engine/platform', | 11 'recipe_engine/platform', |
11 'recipe_engine/properties', | 12 'recipe_engine/properties', |
12 'recipe_engine/python', | 13 'recipe_engine/python', |
13 'depot_tools/tryserver', | 14 'depot_tools/tryserver', |
14 ] | 15 ] |
15 | 16 |
16 | 17 |
17 def RunSteps(api): | 18 def RunSteps(api): |
18 api.chromium.set_config('chromium') | 19 api.chromium.set_config('chromium') |
19 api.gclient.set_config('chromium') | 20 api.gclient.set_config('chromium') |
20 api.bot_update.ensure_checkout(force=True) | 21 api.bot_update.ensure_checkout(force=True) |
21 api.tryserver.maybe_apply_issue() | 22 api.tryserver.maybe_apply_issue() |
22 api.chromium.runhooks() | 23 api.chromium.runhooks() |
23 api.chromium.cleanup_temp() | 24 api.chromium.cleanup_temp() |
24 api.chromium.compile(['chromium_builder_tests']) | 25 api.chromium.compile(['chromium_builder_tests']) |
25 api.python( | 26 api.python( |
26 'annotated_steps', | 27 'annotated_steps', |
27 api.path['build'].join( | 28 api.infra_paths['build'].join( |
28 'scripts', 'slave', 'chromium', 'nacl_sdk_buildbot_run.py'), | 29 'scripts', 'slave', 'chromium', 'nacl_sdk_buildbot_run.py'), |
29 allow_subannotations=True) | 30 allow_subannotations=True) |
30 | 31 |
31 | 32 |
32 def GenTests(api): | 33 def GenTests(api): |
33 yield ( | 34 yield ( |
34 api.test('basic') + | 35 api.test('basic') + |
35 api.properties.generic() + | 36 api.properties.generic() + |
36 api.platform('linux', 64) | 37 api.platform('linux', 64) |
37 ) | 38 ) |
OLD | NEW |