| 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 subproject_tag = 'blink' | 140 subproject_tag = 'blink' |
| 141 elif affects_blink_paths: | 141 elif affects_blink_paths: |
| 142 subproject_tag = 'blink-paths' | 142 subproject_tag = 'blink-paths' |
| 143 else: | 143 else: |
| 144 subproject_tag = 'chromium' | 144 subproject_tag = 'chromium' |
| 145 api.tryserver.set_subproject_tag(subproject_tag) | 145 api.tryserver.set_subproject_tag(subproject_tag) |
| 146 | 146 |
| 147 # TODO(phajdan.jr): Remove special case for layout tests. | 147 # TODO(phajdan.jr): Remove special case for layout tests. |
| 148 add_blink_tests = (affects_blink_paths and | 148 add_blink_tests = (affects_blink_paths and |
| 149 buildername in CHROMIUM_BLINK_TESTS_BUILDERS) | 149 buildername in CHROMIUM_BLINK_TESTS_BUILDERS) |
| 150 add_blink_tests = api.properties.get('force_blink_tests', add_blink_tests) |
| 150 | 151 |
| 151 # Add blink tests that work well with "analyze" here. The tricky ones | 152 # Add blink tests that work well with "analyze" here. The tricky ones |
| 152 # that bypass it (like the layout tests) are added later. | 153 # that bypass it (like the layout tests) are added later. |
| 153 if add_blink_tests: | 154 if add_blink_tests: |
| 154 add_tests([ | 155 add_tests([ |
| 155 api.chromium_tests.steps.GTestTest('blink_heap_unittests'), | 156 api.chromium_tests.steps.GTestTest('blink_heap_unittests'), |
| 156 api.chromium_tests.steps.GTestTest('blink_platform_unittests'), | 157 api.chromium_tests.steps.GTestTest('blink_platform_unittests'), |
| 157 api.chromium_tests.steps.GTestTest('webkit_unit_tests'), | 158 api.chromium_tests.steps.GTestTest('webkit_unit_tests'), |
| 158 api.chromium_tests.steps.GTestTest('wtf_unittests'), | 159 api.chromium_tests.steps.GTestTest('wtf_unittests'), |
| 159 ]) | 160 ]) |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 909 props(mastername='tryserver.v8', | 910 props(mastername='tryserver.v8', |
| 910 buildername='v8_linux_blink_rel', | 911 buildername='v8_linux_blink_rel', |
| 911 patch_project='v8') + | 912 patch_project='v8') + |
| 912 api.platform.name('linux') + | 913 api.platform.name('linux') + |
| 913 suppress_analyze(more_exclusions=['v8/f.*']) + | 914 suppress_analyze(more_exclusions=['v8/f.*']) + |
| 914 api.override_step_data('webkit_tests (with patch)', | 915 api.override_step_data('webkit_tests (with patch)', |
| 915 api.test_utils.canned_test_output(passing=False)) + | 916 api.test_utils.canned_test_output(passing=False)) + |
| 916 api.override_step_data('webkit_tests (without patch)', | 917 api.override_step_data('webkit_tests (without patch)', |
| 917 api.test_utils.canned_test_output(passing=True, minimal=True)) | 918 api.test_utils.canned_test_output(passing=True, minimal=True)) |
| 918 ) | 919 ) |
| OLD | NEW |