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 244 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
255 blacklist.extend([ 'lite-8888', 'gm', '_', test]) | 255 blacklist.extend([ 'lite-8888', 'gm', '_', test]) |
256 # skia:4703 | 256 # skia:4703 |
257 for test in ['image-cacherator-from-picture', | 257 for test in ['image-cacherator-from-picture', |
258 'image-cacherator-from-raster', | 258 'image-cacherator-from-raster', |
259 'image-cacherator-from-ctable']: | 259 'image-cacherator-from-ctable']: |
260 blacklist.extend([ 'sp-8888', 'gm', '_', test]) | 260 blacklist.extend([ 'sp-8888', 'gm', '_', test]) |
261 blacklist.extend([ 'pic-8888', 'gm', '_', test]) | 261 blacklist.extend([ 'pic-8888', 'gm', '_', test]) |
262 blacklist.extend([ '2ndpic-8888', 'gm', '_', test]) | 262 blacklist.extend([ '2ndpic-8888', 'gm', '_', test]) |
263 blacklist.extend(['serialize-8888', 'gm', '_', test]) | 263 blacklist.extend(['serialize-8888', 'gm', '_', test]) |
264 | 264 |
| 265 # GM that requires raster-backed canvas |
| 266 for test in ['gamut']: |
| 267 blacklist.extend([ 'sp-8888', 'gm', '_', test]) |
| 268 blacklist.extend([ 'pic-8888', 'gm', '_', test]) |
| 269 blacklist.extend([ 'lite-8888', 'gm', '_', test]) |
| 270 blacklist.extend([ '2ndpic-8888', 'gm', '_', test]) |
| 271 blacklist.extend(['serialize-8888', 'gm', '_', test]) |
| 272 |
265 # Extensions for RAW images | 273 # Extensions for RAW images |
266 r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw", | 274 r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw", |
267 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"] | 275 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"] |
268 | 276 |
269 # skbug.com/4888 | 277 # skbug.com/4888 |
270 # Blacklist RAW images (and a few large PNGs) on GPU bots | 278 # Blacklist RAW images (and a few large PNGs) on GPU bots |
271 # until we can resolve failures | 279 # until we can resolve failures |
272 if 'GPU' in bot: | 280 if 'GPU' in bot: |
273 blacklist.extend('_ image _ interlaced1.png'.split(' ')) | 281 blacklist.extend('_ image _ interlaced1.png'.split(' ')) |
274 blacklist.extend('_ image _ interlaced2.png'.split(' ')) | 282 blacklist.extend('_ image _ interlaced2.png'.split(' ')) |
(...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
865 api.properties( | 873 api.properties( |
866 buildername=builder, | 874 buildername=builder, |
867 mastername='client.skia', | 875 mastername='client.skia', |
868 slavename='skiabot-linux-swarm-000', | 876 slavename='skiabot-linux-swarm-000', |
869 buildnumber=5, | 877 buildnumber=5, |
870 path_config='kitchen', | 878 path_config='kitchen', |
871 swarm_out_dir='[SWARM_OUT_DIR]', | 879 swarm_out_dir='[SWARM_OUT_DIR]', |
872 revision='abc123', | 880 revision='abc123', |
873 **gerrit_kwargs) | 881 **gerrit_kwargs) |
874 ) | 882 ) |
OLD | NEW |