| 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 | 5 |
| 6 # Recipe module for Skia Swarming trigger. | 6 # Recipe module for Skia Swarming trigger. |
| 7 | 7 |
| 8 | 8 |
| 9 import os | 9 import os |
| 10 import json | 10 import json |
| 11 | 11 |
| 12 | 12 |
| 13 DEPS = [ | 13 DEPS = [ |
| 14 'build/file', | 14 'build/file', |
| 15 'build/gsutil', | 15 'build/gsutil', |
| 16 'builder_name_schema', | 16 'builder_name_schema', |
| 17 'core', | 17 'core', |
| 18 'depot_tools/depot_tools', | |
| 19 'depot_tools/git', | 18 'depot_tools/git', |
| 20 'depot_tools/tryserver', | |
| 21 'recipe_engine/json', | 19 'recipe_engine/json', |
| 22 'recipe_engine/path', | 20 'recipe_engine/path', |
| 23 'recipe_engine/properties', | 21 'recipe_engine/properties', |
| 24 'recipe_engine/python', | 22 'recipe_engine/python', |
| 25 'recipe_engine/raw_io', | 23 'recipe_engine/raw_io', |
| 26 'recipe_engine/step', | 24 'recipe_engine/step', |
| 27 'recipe_engine/time', | 25 'recipe_engine/time', |
| 28 'run', | 26 'run', |
| 29 'swarming', | 27 'swarming', |
| 30 'vars', | 28 'vars', |
| (...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 765 path_config='kitchen', | 763 path_config='kitchen', |
| 766 revision='abc123', | 764 revision='abc123', |
| 767 **gerrit_kwargs) + | 765 **gerrit_kwargs) + |
| 768 api.step_data( | 766 api.step_data( |
| 769 'upload new .isolated file for test_skia', | 767 'upload new .isolated file for test_skia', |
| 770 stdout=api.raw_io.output('def456 XYZ.isolated')) + | 768 stdout=api.raw_io.output('def456 XYZ.isolated')) + |
| 771 api.step_data( | 769 api.step_data( |
| 772 'upload new .isolated file for upload_dm_results_skia', | 770 'upload new .isolated file for upload_dm_results_skia', |
| 773 stdout=api.raw_io.output('def456 XYZ.isolated')) | 771 stdout=api.raw_io.output('def456 XYZ.isolated')) |
| 774 ) | 772 ) |
| OLD | NEW |