| 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 import collections | 5 import collections |
| 6 | 6 |
| 7 from recipe_engine.types import freeze | 7 from recipe_engine.types import freeze |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'depot_tools/bot_update', | 10 'depot_tools/bot_update', |
| 11 'depot_tools/infra_paths', |
| 11 'chromium', | 12 'chromium', |
| 12 'chromium_android', | 13 'chromium_android', |
| 13 'chromium_tests', | 14 'chromium_tests', |
| 14 'commit_position', | 15 'commit_position', |
| 15 'file', | 16 'file', |
| 16 'depot_tools/gclient', | 17 'depot_tools/gclient', |
| 17 'isolate', | 18 'isolate', |
| 18 'recipe_engine/json', | 19 'recipe_engine/json', |
| 19 'recipe_engine/path', | 20 'recipe_engine/path', |
| 20 'recipe_engine/platform', | 21 'recipe_engine/platform', |
| (...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 888 props(mastername='tryserver.v8', | 889 props(mastername='tryserver.v8', |
| 889 buildername='v8_linux_blink_rel', | 890 buildername='v8_linux_blink_rel', |
| 890 patch_project='v8') + | 891 patch_project='v8') + |
| 891 api.platform.name('linux') + | 892 api.platform.name('linux') + |
| 892 suppress_analyze(more_exclusions=['v8/f.*']) + | 893 suppress_analyze(more_exclusions=['v8/f.*']) + |
| 893 api.override_step_data('webkit_tests (with patch)', | 894 api.override_step_data('webkit_tests (with patch)', |
| 894 api.test_utils.canned_test_output(passing=False)) + | 895 api.test_utils.canned_test_output(passing=False)) + |
| 895 api.override_step_data('webkit_tests (without patch)', | 896 api.override_step_data('webkit_tests (without patch)', |
| 896 api.test_utils.canned_test_output(passing=True, minimal=True)) | 897 api.test_utils.canned_test_output(passing=True, minimal=True)) |
| 897 ) | 898 ) |
| OLD | NEW |