| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 configs = [x.replace('gpu', 'gl') for x in configs] | 108 configs = [x.replace('gpu', 'gl') for x in configs] |
| 109 configs = [x.replace('msaa', 'glmsaa') for x in configs] | 109 configs = [x.replace('msaa', 'glmsaa') for x in configs] |
| 110 configs = [x.replace('nvpr', 'glnvpr') for x in configs] | 110 configs = [x.replace('nvpr', 'glnvpr') for x in configs] |
| 111 | 111 |
| 112 # NP is running out of RAM when we run all these modes. skia:3255 | 112 # NP is running out of RAM when we run all these modes. skia:3255 |
| 113 if 'NexusPlayer' not in bot: | 113 if 'NexusPlayer' not in bot: |
| 114 configs.extend(mode + '-8888' for mode in | 114 configs.extend(mode + '-8888' for mode in |
| 115 ['serialize', 'tiles_rt', 'pic']) | 115 ['serialize', 'tiles_rt', 'pic']) |
| 116 | 116 |
| 117 if 'ANGLE' in bot: | 117 if 'ANGLE' in bot: |
| 118 configs.append('angle') | 118 configs.append('angle_d3d11_es2') |
| 119 | 119 |
| 120 # We want to run gpudft on atleast the mali 400 | 120 # We want to run gpudft on atleast the mali 400 |
| 121 if 'GalaxyS3' in bot: | 121 if 'GalaxyS3' in bot: |
| 122 configs.append('gpudft') | 122 configs.append('gpudft') |
| 123 | 123 |
| 124 # Test instanced rendering on a limited number of platforms | 124 # Test instanced rendering on a limited number of platforms |
| 125 if 'Nexus6' in bot: | 125 if 'Nexus6' in bot: |
| 126 configs.append('esinst') # esinst4 isn't working yet on Adreno. | 126 configs.append('esinst') # esinst4 isn't working yet on Adreno. |
| 127 elif 'TegraX1' in bot: | 127 elif 'TegraX1' in bot: |
| 128 # Multisampled instanced configs use nvpr. | 128 # Multisampled instanced configs use nvpr. |
| (...skipping 549 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 678 api.properties( | 678 api.properties( |
| 679 buildername=builder, | 679 buildername=builder, |
| 680 mastername='client.skia', | 680 mastername='client.skia', |
| 681 slavename='skiabot-linux-swarm-000', | 681 slavename='skiabot-linux-swarm-000', |
| 682 buildnumber=5, | 682 buildnumber=5, |
| 683 path_config='kitchen', | 683 path_config='kitchen', |
| 684 swarm_out_dir='[SWARM_OUT_DIR]', | 684 swarm_out_dir='[SWARM_OUT_DIR]', |
| 685 revision='abc123', | 685 revision='abc123', |
| 686 **gerrit_kwargs) | 686 **gerrit_kwargs) |
| 687 ) | 687 ) |
| OLD | NEW |