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