| 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 DEPS = [ | 5 DEPS = [ |
| 6 'adb', | 6 'adb', |
| 7 'amp', | 7 'amp', |
| 8 'bisect_tester', | 8 'bisect_tester', |
| 9 'depot_tools/bot_update', | 9 'depot_tools/bot_update', |
| 10 'chromium', | 10 'chromium', |
| 11 'chromium_android', | 11 'chromium_android', |
| 12 'chromium_tests', | 12 'chromium_tests', |
| 13 'commit_position', | 13 'commit_position', |
| 14 'file', | 14 'file', |
| 15 'isolate', | 15 'isolate', |
| 16 'gsutil', |
| 16 'recipe_engine/json', | 17 'recipe_engine/json', |
| 17 'recipe_engine/path', | 18 'recipe_engine/path', |
| 18 'recipe_engine/platform', | 19 'recipe_engine/platform', |
| 19 'recipe_engine/properties', | 20 'recipe_engine/properties', |
| 20 'recipe_engine/python', | 21 'recipe_engine/python', |
| 21 'recipe_engine/raw_io', | 22 'recipe_engine/raw_io', |
| 22 'recipe_engine/step', | 23 'recipe_engine/step', |
| 23 'swarming', | 24 'swarming', |
| 24 'test_results', | 25 'test_results', |
| 25 'test_utils', | 26 'test_utils', |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1071 | 1072 |
| 1072 yield ( | 1073 yield ( |
| 1073 api.test('kitchen_path_config') + | 1074 api.test('kitchen_path_config') + |
| 1074 api.properties( | 1075 api.properties( |
| 1075 mastername='chromium.fyi', | 1076 mastername='chromium.fyi', |
| 1076 buildername='Linux Kitchen (kitchen_run)', | 1077 buildername='Linux Kitchen (kitchen_run)', |
| 1077 slavename='build1-a1', | 1078 slavename='build1-a1', |
| 1078 buildnumber='77457', | 1079 buildnumber='77457', |
| 1079 path_config='kitchen') | 1080 path_config='kitchen') |
| 1080 ) | 1081 ) |
| OLD | NEW |