| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 | 5 |
| 6 # Recipe module for Skia Swarming test. | 6 # Recipe module for Skia Swarming test. |
| 7 | 7 |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'build/file', | 10 'build/file', |
| (...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 if 'Android' in bot or 'iOS' in bot: | 197 if 'Android' in bot or 'iOS' in bot: |
| 198 # This test crashes the N9 (perhaps because of large malloc/frees). It also | 198 # This test crashes the N9 (perhaps because of large malloc/frees). It also |
| 199 # is fairly slow and not platform-specific. So we just disable it on all of | 199 # is fairly slow and not platform-specific. So we just disable it on all of |
| 200 # Android and iOS. skia:5438 | 200 # Android and iOS. skia:5438 |
| 201 blacklist.extend('_ test _ GrShape'.split(' ')) | 201 blacklist.extend('_ test _ GrShape'.split(' ')) |
| 202 | 202 |
| 203 if 'Win8' in bot: | 203 if 'Win8' in bot: |
| 204 # bungeman: "Doesn't work on Windows anyway, produces unstable GMs with | 204 # bungeman: "Doesn't work on Windows anyway, produces unstable GMs with |
| 205 # 'Unexpected error' from DirectWrite" | 205 # 'Unexpected error' from DirectWrite" |
| 206 blacklist.extend('_ gm _ fontscalerdistortable'.split(' ')) | 206 blacklist.extend('_ gm _ fontscalerdistortable'.split(' ')) |
| 207 # skia:5636 |
| 208 blacklist.extend('_ svg _ Nebraska-StateSeal.svg'.split(' ')) |
| 207 | 209 |
| 208 # skia:4095 | 210 # skia:4095 |
| 209 bad_serialize_gms = ['bleed_image', | 211 bad_serialize_gms = ['bleed_image', |
| 210 'c_gms', | 212 'c_gms', |
| 211 'colortype', | 213 'colortype', |
| 212 'colortype_xfermodes', | 214 'colortype_xfermodes', |
| 213 'drawfilter', | 215 'drawfilter', |
| 214 'fontmgr_bounds_0.75_0', | 216 'fontmgr_bounds_0.75_0', |
| 215 'fontmgr_bounds_1_-0.25', | 217 'fontmgr_bounds_1_-0.25', |
| 216 'fontmgr_bounds', | 218 'fontmgr_bounds', |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 856 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 855 'skimage', 'VERSION'), | 857 'skimage', 'VERSION'), |
| 856 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 858 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 857 'skp', 'VERSION'), | 859 'skp', 'VERSION'), |
| 858 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 860 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 859 'svg', 'VERSION'), | 861 'svg', 'VERSION'), |
| 860 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 862 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
| 861 ) + | 863 ) + |
| 862 api.platform('win', 64) | 864 api.platform('win', 64) |
| 863 ) | 865 ) |
| OLD | NEW |