| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 | 63 |
| 64 # These are the canonical configs that we would ideally run on all bots. We | 64 # These are the canonical configs that we would ideally run on all bots. We |
| 65 # may opt out or substitute some below for specific bots | 65 # may opt out or substitute some below for specific bots |
| 66 configs = ['8888', 'gpu', 'gpusrgb', 'pdf'] | 66 configs = ['8888', 'gpu', 'gpusrgb', 'pdf'] |
| 67 # Add in either msaa4 or msaa16 to the canonical set of configs to run | 67 # Add in either msaa4 or msaa16 to the canonical set of configs to run |
| 68 if 'Android' in bot or 'iOS' in bot: | 68 if 'Android' in bot or 'iOS' in bot: |
| 69 configs.append('msaa4') | 69 configs.append('msaa4') |
| 70 else: | 70 else: |
| 71 configs.append('msaa16') | 71 configs.append('msaa16') |
| 72 | 72 |
| 73 if 'ANGLE' in bot: | |
| 74 configs.extend(['angle_gl_es2', 'angle_d3d11_es2']) | |
| 75 | |
| 76 # 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 |
| 77 # 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 |
| 78 # 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 |
| 79 # haven't tried. | 76 # haven't tried. |
| 80 if ('GalaxyS4' in bot or | 77 if ('GalaxyS4' in bot or |
| 81 'NexusPlayer' in bot or | 78 'NexusPlayer' in bot or |
| 82 'Tegra3' in bot or | 79 'Tegra3' in bot or |
| 83 'iOS' in bot or | 80 'iOS' in bot or |
| 84 # skia:5792 | 81 # skia:5792 |
| 85 'iHD530' in bot): | 82 'iHD530' in bot): |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 api.properties( | 677 api.properties( |
| 681 buildername=builder, | 678 buildername=builder, |
| 682 mastername='client.skia', | 679 mastername='client.skia', |
| 683 slavename='skiabot-linux-swarm-000', | 680 slavename='skiabot-linux-swarm-000', |
| 684 buildnumber=5, | 681 buildnumber=5, |
| 685 path_config='kitchen', | 682 path_config='kitchen', |
| 686 swarm_out_dir='[SWARM_OUT_DIR]', | 683 swarm_out_dir='[SWARM_OUT_DIR]', |
| 687 revision='abc123', | 684 revision='abc123', |
| 688 **gerrit_kwargs) | 685 **gerrit_kwargs) |
| 689 ) | 686 ) |
| OLD | NEW |