| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 recipe_engine.recipe_api import Property | 5 from recipe_engine.recipe_api import Property |
| 6 | 6 |
| 7 DEPS = [ | 7 DEPS = [ |
| 8 'build/cipd', | |
| 9 'build/file', | 8 'build/file', |
| 10 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'depot_tools/cipd', |
| 11 'depot_tools/depot_tools', | 11 'depot_tools/depot_tools', |
| 12 'depot_tools/gclient', | 12 'depot_tools/gclient', |
| 13 'depot_tools/infra_paths', | 13 'depot_tools/infra_paths', |
| 14 'recipe_engine/json', | 14 'recipe_engine/json', |
| 15 'recipe_engine/path', | 15 'recipe_engine/path', |
| 16 'recipe_engine/platform', | 16 'recipe_engine/platform', |
| 17 'recipe_engine/properties', | 17 'recipe_engine/properties', |
| 18 'recipe_engine/python', | 18 'recipe_engine/python', |
| 19 'recipe_engine/step', | 19 'recipe_engine/step', |
| 20 ] | 20 ] |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 yield ( | 253 yield ( |
| 254 api.test('infra_swarming') + | 254 api.test('infra_swarming') + |
| 255 api.properties.git_scheduled( | 255 api.properties.git_scheduled( |
| 256 path_config='kitchen', | 256 path_config='kitchen', |
| 257 buildername='infra-continuous-32', | 257 buildername='infra-continuous-32', |
| 258 buildnumber=-1, | 258 buildnumber=-1, |
| 259 mastername='chromium.infra', | 259 mastername='chromium.infra', |
| 260 repository='https://chromium.googlesource.com/infra/infra', | 260 repository='https://chromium.googlesource.com/infra/infra', |
| 261 ) | 261 ) |
| 262 ) | 262 ) |
| OLD | NEW |