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', |
(...skipping 734 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
745 | 745 |
746 yield ( | 746 yield ( |
747 api.test('use_v8_patch_on_chromium_trybot') + | 747 api.test('use_v8_patch_on_chromium_trybot') + |
748 props(buildername='win_chromium_rel_ng', | 748 props(buildername='win_chromium_rel_ng', |
749 mastername='tryserver.chromium.win', | 749 mastername='tryserver.chromium.win', |
750 patch_project='v8') + | 750 patch_project='v8') + |
751 api.platform.name('win') | 751 api.platform.name('win') |
752 ) | 752 ) |
753 | 753 |
754 yield ( | 754 yield ( |
| 755 api.test('use_webrtc_patch_on_chromium_trybot') + |
| 756 props(buildername='win_chromium_rel_ng', |
| 757 mastername='tryserver.chromium.win', |
| 758 patch_project='webrtc') + |
| 759 api.platform.name('win') |
| 760 ) |
| 761 |
| 762 yield ( |
755 api.test('use_skia_patch_on_chromium_trybot') + | 763 api.test('use_skia_patch_on_chromium_trybot') + |
756 props(buildername='win_chromium_rel_ng', | 764 props(buildername='win_chromium_rel_ng', |
757 mastername='tryserver.chromium.win', | 765 mastername='tryserver.chromium.win', |
758 patch_project='skia') + | 766 patch_project='skia') + |
759 api.platform.name('win') | 767 api.platform.name('win') |
760 ) | 768 ) |
761 | 769 |
762 # Tests that we run nothing if analyze said we didn't have to run anything | 770 # Tests that we run nothing if analyze said we didn't have to run anything |
763 # and there were no source file changes. | 771 # and there were no source file changes. |
764 yield ( | 772 yield ( |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
895 props(mastername='tryserver.v8', | 903 props(mastername='tryserver.v8', |
896 buildername='v8_linux_blink_rel', | 904 buildername='v8_linux_blink_rel', |
897 patch_project='v8') + | 905 patch_project='v8') + |
898 api.platform.name('linux') + | 906 api.platform.name('linux') + |
899 suppress_analyze(more_exclusions=['v8/f.*']) + | 907 suppress_analyze(more_exclusions=['v8/f.*']) + |
900 api.override_step_data('webkit_tests (with patch)', | 908 api.override_step_data('webkit_tests (with patch)', |
901 api.test_utils.canned_test_output(passing=False)) + | 909 api.test_utils.canned_test_output(passing=False)) + |
902 api.override_step_data('webkit_tests (without patch)', | 910 api.override_step_data('webkit_tests (without patch)', |
903 api.test_utils.canned_test_output(passing=True, minimal=True)) | 911 api.test_utils.canned_test_output(passing=True, minimal=True)) |
904 ) | 912 ) |
OLD | NEW |