| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 if affects_blink: | 141 if affects_blink: |
| 142 subproject_tag = 'blink' | 142 subproject_tag = 'blink' |
| 143 elif affects_blink_paths: | 143 elif affects_blink_paths: |
| 144 subproject_tag = 'blink-paths' | 144 subproject_tag = 'blink-paths' |
| 145 else: | 145 else: |
| 146 subproject_tag = 'chromium' | 146 subproject_tag = 'chromium' |
| 147 api.tryserver.set_subproject_tag(subproject_tag) | 147 api.tryserver.set_subproject_tag(subproject_tag) |
| 148 | 148 |
| 149 # TODO(phajdan.jr): Remove special case for layout tests. | 149 # TODO(phajdan.jr): Remove special case for layout tests. |
| 150 add_blink_tests = (affects_blink_paths and | 150 add_blink_tests = (affects_blink_paths and |
| 151 buildername in CHROMIUM_BLINK_TESTS_BUILDERS) | 151 (buildername in CHROMIUM_BLINK_TESTS_BUILDERS or |
| 152 mastername == 'tryserver.blink')) |
| 152 | 153 |
| 153 # Add blink tests that work well with "analyze" here. The tricky ones | 154 # Add blink tests that work well with "analyze" here. The tricky ones |
| 154 # that bypass it (like the layout tests) are added later. | 155 # that bypass it (like the layout tests) are added later. |
| 155 if add_blink_tests: | 156 if add_blink_tests: |
| 156 add_tests([ | 157 add_tests([ |
| 157 api.chromium_tests.steps.GTestTest('blink_heap_unittests'), | 158 api.chromium_tests.steps.GTestTest('blink_heap_unittests'), |
| 158 api.chromium_tests.steps.GTestTest('blink_platform_unittests'), | 159 api.chromium_tests.steps.GTestTest('blink_platform_unittests'), |
| 159 api.chromium_tests.steps.GTestTest('webkit_unit_tests'), | 160 api.chromium_tests.steps.GTestTest('webkit_unit_tests'), |
| 160 api.chromium_tests.steps.GTestTest('wtf_unittests'), | 161 api.chromium_tests.steps.GTestTest('wtf_unittests'), |
| 161 ]) | 162 ]) |
| (...skipping 770 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 932 props(mastername='tryserver.v8', | 933 props(mastername='tryserver.v8', |
| 933 buildername='v8_linux_blink_rel', | 934 buildername='v8_linux_blink_rel', |
| 934 patch_project='v8') + | 935 patch_project='v8') + |
| 935 api.platform.name('linux') + | 936 api.platform.name('linux') + |
| 936 suppress_analyze(more_exclusions=['v8/f.*']) + | 937 suppress_analyze(more_exclusions=['v8/f.*']) + |
| 937 api.override_step_data('webkit_tests (with patch)', | 938 api.override_step_data('webkit_tests (with patch)', |
| 938 api.test_utils.canned_test_output(passing=False)) + | 939 api.test_utils.canned_test_output(passing=False)) + |
| 939 api.override_step_data('webkit_tests (without patch)', | 940 api.override_step_data('webkit_tests (without patch)', |
| 940 api.test_utils.canned_test_output(passing=True, minimal=True)) | 941 api.test_utils.canned_test_output(passing=True, minimal=True)) |
| 941 ) | 942 ) |
| OLD | NEW |