| 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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 266 'convex_poly_clip', | 266 'convex_poly_clip', |
| 267 'extractalpha', | 267 'extractalpha', |
| 268 'filterbitmap_checkerboard_32_32_g8', | 268 'filterbitmap_checkerboard_32_32_g8', |
| 269 'filterbitmap_image_mandrill_64', | 269 'filterbitmap_image_mandrill_64', |
| 270 'shadows', | 270 'shadows', |
| 271 'simpleaaclip_aaclip']) | 271 'simpleaaclip_aaclip']) |
| 272 # skia:5595 | 272 # skia:5595 |
| 273 bad_serialize_gms.extend(['composeshader_bitmap', | 273 bad_serialize_gms.extend(['composeshader_bitmap', |
| 274 'scaled_tilemodes_npot', | 274 'scaled_tilemodes_npot', |
| 275 'scaled_tilemodes']) | 275 'scaled_tilemodes']) |
| 276 | |
| 277 # skia:5778 | 276 # skia:5778 |
| 278 bad_serialize_gms.append('typefacerendering_pfaMac') | 277 bad_serialize_gms.append('typefacerendering_pfaMac') |
| 279 # skia:5942 | |
| 280 bad_serialize_gms.append('parsedpaths') | |
| 281 for test in bad_serialize_gms: | 278 for test in bad_serialize_gms: |
| 282 blacklist(['serialize-8888', 'gm', '_', test]) | 279 blacklist(['serialize-8888', 'gm', '_', test]) |
| 283 | 280 |
| 284 if 'Mac' not in bot: | 281 if 'Mac' not in bot: |
| 285 for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']: | 282 for test in ['bleed_alpha_image', 'bleed_alpha_image_shader']: |
| 286 blacklist(['serialize-8888', 'gm', '_', test]) | 283 blacklist(['serialize-8888', 'gm', '_', test]) |
| 287 # It looks like we skip these only for out-of-memory concerns. | 284 # It looks like we skip these only for out-of-memory concerns. |
| 288 if 'Win' in bot or 'Android' in bot: | 285 if 'Win' in bot or 'Android' in bot: |
| 289 for test in ['verylargebitmap', 'verylarge_picture_image']: | 286 for test in ['verylargebitmap', 'verylarge_picture_image']: |
| 290 blacklist(['serialize-8888', 'gm', '_', test]) | 287 blacklist(['serialize-8888', 'gm', '_', test]) |
| (...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 712 patch_storage='gerrit') + | 709 patch_storage='gerrit') + |
| 713 api.properties.tryserver( | 710 api.properties.tryserver( |
| 714 buildername=builder, | 711 buildername=builder, |
| 715 gerrit_project='skia', | 712 gerrit_project='skia', |
| 716 gerrit_url='https://skia-review.googlesource.com/', | 713 gerrit_url='https://skia-review.googlesource.com/', |
| 717 ) + | 714 ) + |
| 718 api.step_data('get swarming bot id', | 715 api.step_data('get swarming bot id', |
| 719 stdout=api.raw_io.output('skia-bot-123')) + | 716 stdout=api.raw_io.output('skia-bot-123')) + |
| 720 api.step_data('get swarming task id', stdout=api.raw_io.output('123456')) | 717 api.step_data('get swarming task id', stdout=api.raw_io.output('123456')) |
| 721 ) | 718 ) |
| OLD | NEW |