| 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 perf. | 6 # Recipe module for Skia Swarming perf. |
| 7 | 7 |
| 8 | 8 |
| 9 DEPS = [ | 9 DEPS = [ |
| 10 'build/file', | 10 'build/file', |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 args.extend(['--gpuStatsDump', 'true']) | 50 args.extend(['--gpuStatsDump', 'true']) |
| 51 | 51 |
| 52 if 'Android' in bot and 'GPU' in bot: | 52 if 'Android' in bot and 'GPU' in bot: |
| 53 args.extend(['--useThermalManager', '1,1,10,1000']) | 53 args.extend(['--useThermalManager', '1,1,10,1000']) |
| 54 | 54 |
| 55 args.extend(['--scales', '1.0', '1.1']) | 55 args.extend(['--scales', '1.0', '1.1']) |
| 56 | 56 |
| 57 if 'iOS' in bot: | 57 if 'iOS' in bot: |
| 58 args.extend(['--skps', 'ignore_skps']) | 58 args.extend(['--skps', 'ignore_skps']) |
| 59 | 59 |
| 60 config = ['565', '8888', 'gpu', 'nonrendering', 'angle', 'hwui' ] | 60 config = ['8888', 'gpu', 'nonrendering', 'angle', 'hwui' ] |
| 61 if 'AndroidOne' not in bot: | 61 if 'AndroidOne' not in bot: |
| 62 config += [ 'f16', 'srgb' ] | 62 config += [ 'f16', 'srgb' ] |
| 63 if '-GCE-' in bot: |
| 64 config += [ '565' ] |
| 63 # The S4 crashes and the NP produces a long error stream when we run with | 65 # The S4 crashes and the NP produces a long error stream when we run with |
| 64 # MSAA. | 66 # MSAA. |
| 65 if ('GalaxyS4' not in bot and | 67 if ('GalaxyS4' not in bot and |
| 66 'NexusPlayer' not in bot): | 68 'NexusPlayer' not in bot): |
| 67 if 'Android' in bot: | 69 if 'Android' in bot: |
| 68 # The TegraX1 has a regular OpenGL implementation. We bench that instead | 70 # The TegraX1 has a regular OpenGL implementation. We bench that instead |
| 69 # of ES. | 71 # of ES. |
| 70 if 'TegraX1' in bot: | 72 if 'TegraX1' in bot: |
| 71 config.remove('gpu') | 73 config.remove('gpu') |
| 72 config.extend(['gl', 'glmsaa4', 'glnvpr4', 'glnvprdit4']) | 74 config.extend(['gl', 'glmsaa4', 'glnvpr4', 'glnvprdit4']) |
| (...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 345 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' + | 347 buildername='Perf-Ubuntu-GCC-ShuttleA-GPU-GTX550Ti-x86_64-Release-' + |
| 346 'Valgrind-Trybot', | 348 'Valgrind-Trybot', |
| 347 mastername='client.skia', | 349 mastername='client.skia', |
| 348 slavename='skiabot-linux-swarm-000', | 350 slavename='skiabot-linux-swarm-000', |
| 349 buildnumber=5, | 351 buildnumber=5, |
| 350 path_config='kitchen', | 352 path_config='kitchen', |
| 351 swarm_out_dir='[SWARM_OUT_DIR]', | 353 swarm_out_dir='[SWARM_OUT_DIR]', |
| 352 revision='abc123', | 354 revision='abc123', |
| 353 **gerrit_kwargs) | 355 **gerrit_kwargs) |
| 354 ) | 356 ) |
| OLD | NEW |