| 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/build', |
| 6 'build/chromium', | 7 'build/chromium', |
| 7 'build/chromium_android', | 8 'build/chromium_android', |
| 8 'build/chromium_checkout', | 9 'build/chromium_checkout', |
| 9 'build/chromium_swarming', | 10 'build/chromium_swarming', |
| 10 'build/chromium_tests', | 11 'build/chromium_tests', |
| 11 'build/commit_position', | 12 'build/commit_position', |
| 12 'build/file', | 13 'build/file', |
| 13 'build/filter', | 14 'build/filter', |
| 14 'build/isolate', | 15 'build/isolate', |
| 15 'build/swarming', | 16 'build/swarming', |
| (...skipping 18 matching lines...) Expand all Loading... |
| 34 | 35 |
| 35 def GenTests(api): | 36 def GenTests(api): |
| 36 yield ( | 37 yield ( |
| 37 api.test('basic') + | 38 api.test('basic') + |
| 38 api.platform('linux', 64) + | 39 api.platform('linux', 64) + |
| 39 api.properties.tryserver( | 40 api.properties.tryserver( |
| 40 path_config='kitchen', | 41 path_config='kitchen', |
| 41 mastername='tryserver.chromium.linux', | 42 mastername='tryserver.chromium.linux', |
| 42 buildername='linux_chromium_rel_ng') | 43 buildername='linux_chromium_rel_ng') |
| 43 ) | 44 ) |
| OLD | NEW |