| 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 from infra.libs.infra_types import freeze | 5 from infra.libs.infra_types import freeze |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'bot_update', | 8 'bot_update', |
| 9 'chromium', | 9 'chromium', |
| 10 'chromium_android', | 10 'chromium_android', |
| 11 'chromium_tests', | 11 'chromium_tests', |
| 12 'gclient', | 12 'gclient', |
| 13 'gpu', | 13 'gpu', |
| 14 'isolate', | 14 'isolate', |
| 15 'itertools', | |
| 16 'json', | 15 'json', |
| 17 'path', | 16 'path', |
| 18 'platform', | 17 'platform', |
| 19 'properties', | 18 'properties', |
| 20 'python', | 19 'python', |
| 21 'raw_io', | 20 'raw_io', |
| 22 'step', | 21 'step', |
| 23 'swarming', | 22 'swarming', |
| 24 'test_utils', | 23 'test_utils', |
| 25 'tryserver', | 24 'tryserver', |
| (...skipping 1128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 | 1153 |
| 1155 yield ( | 1154 yield ( |
| 1156 api.test('swarming_paths') + | 1155 api.test('swarming_paths') + |
| 1157 api.properties.tryserver( | 1156 api.properties.tryserver( |
| 1158 mastername='tryserver.chromium.linux', | 1157 mastername='tryserver.chromium.linux', |
| 1159 buildername='linux_chromium_rel_ng', | 1158 buildername='linux_chromium_rel_ng', |
| 1160 path_config='swarming', | 1159 path_config='swarming', |
| 1161 ) + | 1160 ) + |
| 1162 api.platform.name('linux') | 1161 api.platform.name('linux') |
| 1163 ) | 1162 ) |
| OLD | NEW |