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