| 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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 blacklist('gpusrgb image _ _') | 161 blacklist('gpusrgb image _ _') |
| 162 blacklist('glsrgb image _ _') | 162 blacklist('glsrgb image _ _') |
| 163 | 163 |
| 164 if 'Valgrind' in bot: | 164 if 'Valgrind' in bot: |
| 165 # These take 18+ hours to run. | 165 # These take 18+ hours to run. |
| 166 blacklist('pdf gm _ fontmgr_iter') | 166 blacklist('pdf gm _ fontmgr_iter') |
| 167 blacklist('pdf _ _ PANO_20121023_214540.jpg') | 167 blacklist('pdf _ _ PANO_20121023_214540.jpg') |
| 168 blacklist('pdf skp _ worldjournal') | 168 blacklist('pdf skp _ worldjournal') |
| 169 blacklist('pdf skp _ desk_baidu.skp') | 169 blacklist('pdf skp _ desk_baidu.skp') |
| 170 blacklist('pdf skp _ desk_wikipedia.skp') | 170 blacklist('pdf skp _ desk_wikipedia.skp') |
| 171 blacklist('_ svg _ _') |
| 171 | 172 |
| 172 if 'iOS' in bot: | 173 if 'iOS' in bot: |
| 173 blacklist('gpu skp _ _') | 174 blacklist('gpu skp _ _') |
| 174 blacklist('msaa skp _ _') | 175 blacklist('msaa skp _ _') |
| 175 blacklist('msaa16 gm _ tilemodesProcess') | 176 blacklist('msaa16 gm _ tilemodesProcess') |
| 176 | 177 |
| 177 if 'Mac' in bot or 'iOS' in bot: | 178 if 'Mac' in bot or 'iOS' in bot: |
| 178 # CG fails on questionable bmps | 179 # CG fails on questionable bmps |
| 179 blacklist('_ image gen_platf rgba32abf.bmp') | 180 blacklist('_ image gen_platf rgba32abf.bmp') |
| 180 blacklist('_ image gen_platf rgb24prof.bmp') | 181 blacklist('_ image gen_platf rgb24prof.bmp') |
| (...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 api.properties( | 678 api.properties( |
| 678 buildername=builder, | 679 buildername=builder, |
| 679 mastername='client.skia', | 680 mastername='client.skia', |
| 680 slavename='skiabot-linux-swarm-000', | 681 slavename='skiabot-linux-swarm-000', |
| 681 buildnumber=5, | 682 buildnumber=5, |
| 682 path_config='kitchen', | 683 path_config='kitchen', |
| 683 swarm_out_dir='[SWARM_OUT_DIR]', | 684 swarm_out_dir='[SWARM_OUT_DIR]', |
| 684 revision='abc123', | 685 revision='abc123', |
| 685 **gerrit_kwargs) | 686 **gerrit_kwargs) |
| 686 ) | 687 ) |
| OLD | NEW |