| 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 'amp', | 10 'amp', |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 'os': 'Windows', | 146 'os': 'Windows', |
| 147 }, | 147 }, |
| 148 ], | 148 ], |
| 149 }, | 149 }, |
| 150 }) | 150 }) |
| 151 | 151 |
| 152 | 152 |
| 153 # TODO(phajdan.jr): Remove special case for layout tests. | 153 # TODO(phajdan.jr): Remove special case for layout tests. |
| 154 # This could be done by moving layout tests to main waterfall. | 154 # This could be done by moving layout tests to main waterfall. |
| 155 CHROMIUM_BLINK_TESTS_BUILDERS = freeze([ | 155 CHROMIUM_BLINK_TESTS_BUILDERS = freeze([ |
| 156 'linux_blink_oilpan_rel', |
| 156 'linux_chromium_rel_ng', | 157 'linux_chromium_rel_ng', |
| 157 'mac_chromium_rel_ng', | 158 'mac_chromium_rel_ng', |
| 158 'win_chromium_rel_ng', | 159 'win_chromium_rel_ng', |
| 159 ]) | 160 ]) |
| 160 | 161 |
| 161 | 162 |
| 162 CHROMIUM_BLINK_TESTS_PATHS = freeze([ | 163 CHROMIUM_BLINK_TESTS_PATHS = freeze([ |
| 163 # Service worker code is primarily tested in Blink layout tests. | 164 # Service worker code is primarily tested in Blink layout tests. |
| 164 'content/browser/service_worker', | 165 'content/browser/service_worker', |
| 165 'content/child/service_worker', | 166 'content/child/service_worker', |
| (...skipping 910 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 api.test_utils.canned_test_output(passing=True)) | 1077 api.test_utils.canned_test_output(passing=True)) |
| 1077 ) | 1078 ) |
| 1078 | 1079 |
| 1079 yield ( | 1080 yield ( |
| 1080 api.test('use_v8_patch_on_blink_trybot') + | 1081 api.test('use_v8_patch_on_blink_trybot') + |
| 1081 props(mastername='tryserver.blink', | 1082 props(mastername='tryserver.blink', |
| 1082 buildername='mac_blink_rel', | 1083 buildername='mac_blink_rel', |
| 1083 patch_project='v8') + | 1084 patch_project='v8') + |
| 1084 api.platform.name('mac') | 1085 api.platform.name('mac') |
| 1085 ) | 1086 ) |
| OLD | NEW |