OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 'build/adb', |
| 7 'build/bisect_tester', |
6 'build/chromium', | 8 'build/chromium', |
| 9 'build/chromium_android', |
7 'build/chromium_swarming', | 10 'build/chromium_swarming', |
8 'build/chromium_tests', | 11 'build/chromium_tests', |
| 12 'build/commit_position', |
| 13 'build/file', |
| 14 'build/gsutil', |
| 15 'build/isolate', |
| 16 'build/swarming', |
9 'build/test_results', | 17 'build/test_results', |
10 'build/test_utils', | 18 'build/test_utils', |
| 19 'depot_tools/bot_update', |
| 20 'recipe_engine/json', |
| 21 'recipe_engine/path', |
| 22 'recipe_engine/platform', |
11 'recipe_engine/properties', | 23 'recipe_engine/properties', |
| 24 'recipe_engine/python', |
| 25 'recipe_engine/raw_io', |
12 'recipe_engine/step', | 26 'recipe_engine/step', |
| 27 'recipe_engine/tempfile', |
13 ] | 28 ] |
14 | 29 |
15 | 30 |
16 from recipe_engine import config_types | 31 from recipe_engine import config_types |
17 | 32 |
18 | 33 |
19 def RunSteps(api): | 34 def RunSteps(api): |
20 api.chromium_tests.main_waterfall_steps(api) | 35 api.chromium_tests.main_waterfall_steps(api) |
21 | 36 |
22 | 37 |
23 def GenTests(api): | 38 def GenTests(api): |
24 yield ( | 39 yield ( |
25 api.test('builder') + | 40 api.test('builder') + |
26 api.properties.generic( | 41 api.properties.generic( |
27 mastername='chromium.fyi', | 42 mastername='chromium.fyi', |
28 buildername='Linux remote_run Builder', | 43 buildername='Linux remote_run Builder', |
29 path_config='kitchen') | 44 path_config='kitchen') |
30 ) | 45 ) |
31 | 46 |
32 yield ( | 47 yield ( |
33 api.test('tester') + | 48 api.test('tester') + |
34 api.properties.generic( | 49 api.properties.generic( |
35 mastername='chromium.fyi', | 50 mastername='chromium.fyi', |
36 buildername='Linux remote_run Tester', | 51 buildername='Linux remote_run Tester', |
37 parent_buildername='Linux remote_run Builder', | 52 parent_buildername='Linux remote_run Builder', |
38 path_config='kitchen') | 53 path_config='kitchen') |
39 ) | 54 ) |
OLD | NEW |