| 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/bot_update', |
| 18 'depot_tools/depot_tools', | 19 'depot_tools/depot_tools', |
| 19 'depot_tools/git', | 20 'depot_tools/git', |
| 20 'depot_tools/tryserver', | |
| 21 'recipe_engine/json', | 21 'recipe_engine/json', |
| 22 'recipe_engine/path', | 22 'recipe_engine/path', |
| 23 'recipe_engine/properties', | 23 'recipe_engine/properties', |
| 24 'recipe_engine/python', | 24 'recipe_engine/python', |
| 25 'recipe_engine/raw_io', | 25 'recipe_engine/raw_io', |
| 26 'recipe_engine/step', | 26 'recipe_engine/step', |
| 27 'recipe_engine/time', | 27 'recipe_engine/time', |
| 28 'run', | 28 'run', |
| 29 'swarming', | 29 'swarming', |
| 30 'vars', | 30 'vars', |
| (...skipping 735 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 766 test += api.path.exists(*paths) | 766 test += api.path.exists(*paths) |
| 767 | 767 |
| 768 return test | 768 return test |
| 769 | 769 |
| 770 | 770 |
| 771 def GenTests(api): | 771 def GenTests(api): |
| 772 for mastername, slaves in TEST_BUILDERS.iteritems(): | 772 for mastername, slaves in TEST_BUILDERS.iteritems(): |
| 773 for slavename, builders_by_slave in slaves.iteritems(): | 773 for slavename, builders_by_slave in slaves.iteritems(): |
| 774 for builder in builders_by_slave: | 774 for builder in builders_by_slave: |
| 775 yield test_for_bot(api, builder, mastername, slavename) | 775 yield test_for_bot(api, builder, mastername, slavename) |
| OLD | NEW |