| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 | 291 |
| 292 # Large image that overwhelms older Mac bots | 292 # Large image that overwhelms older Mac bots |
| 293 if 'MacMini4.1-GPU' in bot: | 293 if 'MacMini4.1-GPU' in bot: |
| 294 blacklist.extend('_ image _ abnormal.wbmp'.split(' ')) | 294 blacklist.extend('_ image _ abnormal.wbmp'.split(' ')) |
| 295 blacklist.extend(['msaa16', 'gm', '_', 'blurcircles']) | 295 blacklist.extend(['msaa16', 'gm', '_', 'blurcircles']) |
| 296 | 296 |
| 297 match = [] | 297 match = [] |
| 298 if 'Valgrind' in bot: # skia:3021 | 298 if 'Valgrind' in bot: # skia:3021 |
| 299 match.append('~Threaded') | 299 match.append('~Threaded') |
| 300 | 300 |
| 301 if 'Nexus6' in bot: # skia:5637 | |
| 302 match.append('~CompressCheckerboard') | |
| 303 | |
| 304 if 'GalaxyS3' in bot: # skia:1699 | 301 if 'GalaxyS3' in bot: # skia:1699 |
| 305 match.append('~WritePixels') | 302 match.append('~WritePixels') |
| 306 | 303 |
| 307 if 'AndroidOne' in bot: # skia:4711 | 304 if 'AndroidOne' in bot: # skia:4711 |
| 308 match.append('~WritePixels') | 305 match.append('~WritePixels') |
| 309 | 306 |
| 310 if 'NexusPlayer' in bot: | 307 if 'NexusPlayer' in bot: |
| 311 match.append('~ResourceCache') | 308 match.append('~ResourceCache') |
| 312 | 309 |
| 313 if 'Nexus10' in bot: # skia:5509 | 310 if 'Nexus10' in bot: # skia:5509 |
| (...skipping 542 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 856 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 853 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 857 'skimage', 'VERSION'), | 854 'skimage', 'VERSION'), |
| 858 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 855 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 859 'skp', 'VERSION'), | 856 'skp', 'VERSION'), |
| 860 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', | 857 api.path['slave_build'].join('skia', 'infra', 'bots', 'assets', |
| 861 'svg', 'VERSION'), | 858 'svg', 'VERSION'), |
| 862 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') | 859 api.path['slave_build'].join('tmp', 'uninteresting_hashes.txt') |
| 863 ) + | 860 ) + |
| 864 api.platform('win', 64) | 861 api.platform('win', 64) |
| 865 ) | 862 ) |
| OLD | NEW |