| 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 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'convex_poly_clip', | 256 'convex_poly_clip', |
| 257 'extractalpha', | 257 'extractalpha', |
| 258 'filterbitmap_checkerboard_32_32_g8', | 258 'filterbitmap_checkerboard_32_32_g8', |
| 259 'filterbitmap_image_mandrill_64', | 259 'filterbitmap_image_mandrill_64', |
| 260 'shadows', | 260 'shadows', |
| 261 'simpleaaclip_aaclip']) | 261 'simpleaaclip_aaclip']) |
| 262 # skia:5595 | 262 # skia:5595 |
| 263 bad_serialize_gms.extend(['composeshader_bitmap', | 263 bad_serialize_gms.extend(['composeshader_bitmap', |
| 264 'scaled_tilemodes_npot', | 264 'scaled_tilemodes_npot', |
| 265 'scaled_tilemodes']) | 265 'scaled_tilemodes']) |
| 266 # skia:5778 |
| 267 bad_serialize_gms.append('typefacerendering_pfaMac') |
| 266 for test in bad_serialize_gms: | 268 for test in bad_serialize_gms: |
| 267 blacklist(['serialize-8888', 'gm', '_', test]) | 269 blacklist(['serialize-8888', 'gm', '_', test]) |
| 268 | 270 |
| 269 if 'Mac' not in bot: | 271 if 'Mac' not in bot: |
| 270 for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']: | 272 for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']: |
| 271 blacklist(['serialize-8888', 'gm', '_', test]) | 273 blacklist(['serialize-8888', 'gm', '_', test]) |
| 272 # It looks like we skip these only for out-of-memory concerns. | 274 # It looks like we skip these only for out-of-memory concerns. |
| 273 if 'Win' in bot or 'Android' in bot: | 275 if 'Win' in bot or 'Android' in bot: |
| 274 for test in ['verylargebitmap', 'verylarge_picture_image']: | 276 for test in ['verylargebitmap', 'verylarge_picture_image']: |
| 275 blacklist(['serialize-8888', 'gm', '_', test]) | 277 blacklist(['serialize-8888', 'gm', '_', test]) |
| (...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 673 api.properties( | 675 api.properties( |
| 674 buildername=builder, | 676 buildername=builder, |
| 675 mastername='client.skia', | 677 mastername='client.skia', |
| 676 slavename='skiabot-linux-swarm-000', | 678 slavename='skiabot-linux-swarm-000', |
| 677 buildnumber=5, | 679 buildnumber=5, |
| 678 path_config='kitchen', | 680 path_config='kitchen', |
| 679 swarm_out_dir='[SWARM_OUT_DIR]', | 681 swarm_out_dir='[SWARM_OUT_DIR]', |
| 680 revision='abc123', | 682 revision='abc123', |
| 681 **gerrit_kwargs) | 683 **gerrit_kwargs) |
| 682 ) | 684 ) |
| OLD | NEW |