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 |
73 # With msaa, the S4 crashes and the NP produces a long error stream when we | 76 # 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 | 77 # 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 | 78 # why we're not running msaa on iOS, probably started with gpu config and just |
76 # haven't tried. | 79 # haven't tried. |
77 if ('GalaxyS4' in bot or | 80 if ('GalaxyS4' in bot or |
78 'NexusPlayer' in bot or | 81 'NexusPlayer' in bot or |
79 'Tegra3' in bot or | 82 'Tegra3' in bot or |
80 'iOS' in bot or | 83 'iOS' in bot or |
81 # skia:5792 | 84 # skia:5792 |
82 'iHD530' in bot): | 85 'iHD530' in bot): |
(...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
677 api.properties( | 680 api.properties( |
678 buildername=builder, | 681 buildername=builder, |
679 mastername='client.skia', | 682 mastername='client.skia', |
680 slavename='skiabot-linux-swarm-000', | 683 slavename='skiabot-linux-swarm-000', |
681 buildnumber=5, | 684 buildnumber=5, |
682 path_config='kitchen', | 685 path_config='kitchen', |
683 swarm_out_dir='[SWARM_OUT_DIR]', | 686 swarm_out_dir='[SWARM_OUT_DIR]', |
684 revision='abc123', | 687 revision='abc123', |
685 **gerrit_kwargs) | 688 **gerrit_kwargs) |
686 ) | 689 ) |
OLD | NEW |