| 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 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 def blacklist(quad): | 150 def blacklist(quad): |
| 151 config, src, options, name = quad.split(' ') if type(quad) is str else quad | 151 config, src, options, name = quad.split(' ') if type(quad) is str else quad |
| 152 if config == '_' or config in configs: | 152 if config == '_' or config in configs: |
| 153 blacklisted.extend([config, src, options, name]) | 153 blacklisted.extend([config, src, options, name]) |
| 154 | 154 |
| 155 # TODO: ??? | 155 # TODO: ??? |
| 156 blacklist('f16 _ _ dstreadshuffle') | 156 blacklist('f16 _ _ dstreadshuffle') |
| 157 blacklist('f16 image _ _') | 157 blacklist('f16 image _ _') |
| 158 blacklist('srgb image _ _') | 158 blacklist('srgb image _ _') |
| 159 blacklist('gpusrgb image _ _') | 159 blacklist('gpusrgb image _ _') |
| 160 blacklist('glsrgb image _ _') |
| 160 | 161 |
| 161 if 'Valgrind' in bot: | 162 if 'Valgrind' in bot: |
| 162 # These take 18+ hours to run. | 163 # These take 18+ hours to run. |
| 163 blacklist('pdf gm _ fontmgr_iter') | 164 blacklist('pdf gm _ fontmgr_iter') |
| 164 blacklist('pdf _ _ PANO_20121023_214540.jpg') | 165 blacklist('pdf _ _ PANO_20121023_214540.jpg') |
| 165 blacklist('pdf skp _ worldjournal') | 166 blacklist('pdf skp _ worldjournal') |
| 166 blacklist('pdf skp _ desk_baidu.skp') | 167 blacklist('pdf skp _ desk_baidu.skp') |
| 167 blacklist('pdf skp _ desk_wikipedia.skp') | 168 blacklist('pdf skp _ desk_wikipedia.skp') |
| 168 | 169 |
| 169 if 'iOS' in bot: | 170 if 'iOS' in bot: |
| (...skipping 714 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 884 api.properties( | 885 api.properties( |
| 885 buildername=builder, | 886 buildername=builder, |
| 886 mastername='client.skia', | 887 mastername='client.skia', |
| 887 slavename='skiabot-linux-swarm-000', | 888 slavename='skiabot-linux-swarm-000', |
| 888 buildnumber=5, | 889 buildnumber=5, |
| 889 path_config='kitchen', | 890 path_config='kitchen', |
| 890 swarm_out_dir='[SWARM_OUT_DIR]', | 891 swarm_out_dir='[SWARM_OUT_DIR]', |
| 891 revision='abc123', | 892 revision='abc123', |
| 892 **gerrit_kwargs) | 893 **gerrit_kwargs) |
| 893 ) | 894 ) |
| OLD | NEW |