| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 else: | 70 else: |
| 71 configs.append('msaa16') | 71 configs.append('msaa16') |
| 72 | 72 |
| 73 # With msaa, the S4 crashes and the NP produces a long error stream when we | 73 # With msaa, the S4 crashes and the NP produces a long error stream when we |
| 74 # run with MSAA. The Tegra2 and Tegra3 just don't support it. No record of | 74 # run with MSAA. The Tegra2 and Tegra3 just don't support it. No record of |
| 75 # why we're not running msaa on iOS, probably started with gpu config and just | 75 # why we're not running msaa on iOS, probably started with gpu config and just |
| 76 # haven't tried. | 76 # haven't tried. |
| 77 if ('GalaxyS4' in bot or | 77 if ('GalaxyS4' in bot or |
| 78 'NexusPlayer' in bot or | 78 'NexusPlayer' in bot or |
| 79 'Tegra3' in bot or | 79 'Tegra3' in bot or |
| 80 'iOS' in bot): | 80 'iOS' in bot or |
| 81 # skia:5792 |
| 82 'iHD530' in bot): |
| 81 configs = [x for x in configs if 'msaa' not in x] | 83 configs = [x for x in configs if 'msaa' not in x] |
| 82 | 84 |
| 83 # Runs out of memory on Android bots and Daisy. Everyone else seems fine. | 85 # Runs out of memory on Android bots and Daisy. Everyone else seems fine. |
| 84 if 'Android' in bot or 'Daisy' in bot: | 86 if 'Android' in bot or 'Daisy' in bot: |
| 85 configs.remove('pdf') | 87 configs.remove('pdf') |
| 86 | 88 |
| 87 if '-GCE-' in bot: | 89 if '-GCE-' in bot: |
| 88 configs.extend(['565']) | 90 configs.extend(['565']) |
| 89 configs.extend(['f16', 'srgb']) # Gamma-correct formats. | 91 configs.extend(['f16', 'srgb']) # Gamma-correct formats. |
| 90 configs.extend(['sp-8888', '2ndpic-8888']) # Test niche uses of SkPicture. | 92 configs.extend(['sp-8888', '2ndpic-8888']) # Test niche uses of SkPicture. |
| (...skipping 584 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 675 api.properties( | 677 api.properties( |
| 676 buildername=builder, | 678 buildername=builder, |
| 677 mastername='client.skia', | 679 mastername='client.skia', |
| 678 slavename='skiabot-linux-swarm-000', | 680 slavename='skiabot-linux-swarm-000', |
| 679 buildnumber=5, | 681 buildnumber=5, |
| 680 path_config='kitchen', | 682 path_config='kitchen', |
| 681 swarm_out_dir='[SWARM_OUT_DIR]', | 683 swarm_out_dir='[SWARM_OUT_DIR]', |
| 682 revision='abc123', | 684 revision='abc123', |
| 683 **gerrit_kwargs) | 685 **gerrit_kwargs) |
| 684 ) | 686 ) |
| OLD | NEW |