| 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 241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 blacklist.extend([ 'lite-8888', 'gm', '_', test]) | 252 blacklist.extend([ 'lite-8888', 'gm', '_', test]) |
| 253 # skia:4703 | 253 # skia:4703 |
| 254 for test in ['image-cacherator-from-picture', | 254 for test in ['image-cacherator-from-picture', |
| 255 'image-cacherator-from-raster', | 255 'image-cacherator-from-raster', |
| 256 'image-cacherator-from-ctable']: | 256 'image-cacherator-from-ctable']: |
| 257 blacklist.extend([ 'sp-8888', 'gm', '_', test]) | 257 blacklist.extend([ 'sp-8888', 'gm', '_', test]) |
| 258 blacklist.extend([ 'pic-8888', 'gm', '_', test]) | 258 blacklist.extend([ 'pic-8888', 'gm', '_', test]) |
| 259 blacklist.extend([ '2ndpic-8888', 'gm', '_', test]) | 259 blacklist.extend([ '2ndpic-8888', 'gm', '_', test]) |
| 260 blacklist.extend(['serialize-8888', 'gm', '_', test]) | 260 blacklist.extend(['serialize-8888', 'gm', '_', test]) |
| 261 | 261 |
| 262 # SaveLayerDrawRestoreNooper diffs |
| 263 for test in ['car.svg', |
| 264 'gallardo.svg', |
| 265 'rg1024_green_grapes.svg', |
| 266 'Seal_of_Kansas.svg']: |
| 267 blacklist.extend([ 'sp-8888', 'svg', '_', test]) |
| 268 blacklist.extend([ 'pic-8888', 'svg', '_', test]) |
| 269 blacklist.extend([ '2ndpic-8888', 'svg', '_', test]) |
| 270 blacklist.extend(['serialize-8888', 'svg', '_', test]) |
| 271 |
| 262 # Extensions for RAW images | 272 # Extensions for RAW images |
| 263 r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw", | 273 r = ["arw", "cr2", "dng", "nef", "nrw", "orf", "raf", "rw2", "pef", "srw", |
| 264 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"] | 274 "ARW", "CR2", "DNG", "NEF", "NRW", "ORF", "RAF", "RW2", "PEF", "SRW"] |
| 265 | 275 |
| 266 # skbug.com/4888 | 276 # skbug.com/4888 |
| 267 # Blacklist RAW images (and a few large PNGs) on GPU bots | 277 # Blacklist RAW images (and a few large PNGs) on GPU bots |
| 268 # until we can resolve failures | 278 # until we can resolve failures |
| 269 if 'GPU' in bot: | 279 if 'GPU' in bot: |
| 270 blacklist.extend('_ image _ interlaced1.png'.split(' ')) | 280 blacklist.extend('_ image _ interlaced1.png'.split(' ')) |
| 271 blacklist.extend('_ image _ interlaced2.png'.split(' ')) | 281 blacklist.extend('_ image _ interlaced2.png'.split(' ')) |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 844 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 854 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 845 'skimage', 'VERSION'), | 855 'skimage', 'VERSION'), |
| 846 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 856 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 847 'skp', 'VERSION'), | 857 'skp', 'VERSION'), |
| 848 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 858 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 849 'svg', 'VERSION'), | 859 'svg', 'VERSION'), |
| 850 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 860 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
| 851 ) + | 861 ) + |
| 852 api.platform('win', 64) | 862 api.platform('win', 64) |
| 853 ) | 863 ) |
| OLD | NEW |