OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 DEPS = [ |
| 6 'build/chromium', |
| 7 'build/chromium_android', |
| 8 'build/chromium_checkout', |
| 9 'build/chromium_swarming', |
| 10 'build/chromium_tests', |
| 11 'build/commit_position', |
| 12 'build/file', |
| 13 'build/filter', |
| 14 'build/isolate', |
| 15 'build/swarming', |
| 16 'build/test_results', |
| 17 'build/test_utils', |
| 18 'depot_tools/bot_update', |
| 19 'depot_tools/gclient', |
| 20 'depot_tools/tryserver', |
| 21 'recipe_engine/json', |
| 22 'recipe_engine/path', |
| 23 'recipe_engine/platform', |
| 24 'recipe_engine/properties', |
| 25 'recipe_engine/python', |
| 26 'recipe_engine/raw_io', |
| 27 'recipe_engine/step', |
| 28 ] |
| 29 |
| 30 |
| 31 def RunSteps(api): |
| 32 return api.chromium_tests.trybot_steps(api) |
| 33 |
| 34 |
| 35 def GenTests(api): |
| 36 yield ( |
| 37 api.test('basic') + |
| 38 api.platform('linux', 64) + |
| 39 api.properties.tryserver( |
| 40 path_config='kitchen', |
| 41 mastername='tryserver.chromium.linux', |
| 42 buildername='linux_chromium_rel_ng') |
| 43 ) |
OLD | NEW |