OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'gclient', | 6 'gclient', |
7 'recipe_engine/path', | 7 'recipe_engine/path', |
8 'recipe_engine/properties', | 8 'recipe_engine/properties', |
9 ] | 9 ] |
10 | 10 |
11 | 11 |
12 TEST_CONFIGS = [ | 12 TEST_CONFIGS = [ |
13 'android', | 13 'android', |
14 'android_bare', | 14 'android_bare', |
15 'blink', | 15 'blink', |
16 'boringssl', | 16 'boringssl', |
17 'build_internal', | 17 'build_internal', |
18 'build_internal_scripts_slave', | 18 'build_internal_scripts_slave', |
19 'catapult', | 19 'catapult', |
| 20 'chromedriver', |
20 'chrome_internal', | 21 'chrome_internal', |
21 'chromium', | 22 'chromium', |
22 'chromium_lkcr', | 23 'chromium_lkcr', |
23 'chromium_lkgr', | 24 'chromium_lkgr', |
24 'chromium_perf', | 25 'chromium_perf', |
25 'chromium_perf_android', | 26 'chromium_perf_android', |
26 'chromium_skia', | 27 'chromium_skia', |
27 'chromium_webrtc', | 28 'chromium_webrtc', |
28 'chromium_webrtc_tot', | 29 'chromium_webrtc_tot', |
29 'crashpad', | 30 'crashpad', |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 | 91 |
91 assert not api.gclient.is_blink_mode | 92 assert not api.gclient.is_blink_mode |
92 | 93 |
93 | 94 |
94 def GenTests(api): | 95 def GenTests(api): |
95 yield api.test('basic') | 96 yield api.test('basic') |
96 | 97 |
97 yield api.test('revision') + api.properties(revision='abc') | 98 yield api.test('revision') + api.properties(revision='abc') |
98 | 99 |
99 yield api.test('tryserver') + api.properties.tryserver() | 100 yield api.test('tryserver') + api.properties.tryserver() |
OLD | NEW |