| 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 1084 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 | 1109 |
| 1111 yield ( | 1110 yield ( |
| 1112 api.test('swarming_paths') + | 1111 api.test('swarming_paths') + |
| 1113 api.properties.tryserver( | 1112 api.properties.tryserver( |
| 1114 mastername='tryserver.chromium.linux', | 1113 mastername='tryserver.chromium.linux', |
| 1115 buildername='linux_chromium_rel_ng', | 1114 buildername='linux_chromium_rel_ng', |
| 1116 path_config='swarming', | 1115 path_config='swarming', |
| 1117 ) + | 1116 ) + |
| 1118 api.platform.name('linux') | 1117 api.platform.name('linux') |
| 1119 ) | 1118 ) |
| OLD | NEW |