Index: infra/bots/recipes/swarm_perf.py |
diff --git a/infra/bots/recipes/swarm_perf.py b/infra/bots/recipes/swarm_perf.py |
index b324917793e90b3203ad1c3df8ebdd121739d521..8b4b70424f28d944e7dfd615be305de45bc35653 100644 |
--- a/infra/bots/recipes/swarm_perf.py |
+++ b/infra/bots/recipes/swarm_perf.py |
@@ -38,6 +38,7 @@ TEST_BUILDERS = { |
'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Debug', |
'Perf-Win-MSVC-GCE-CPU-AVX2-x86_64-Release', |
'Perf-Win8-MSVC-ShuttleB-GPU-HD4600-x86_64-Release-Trybot', |
+ 'Perf-Win8-MSVC-ShuttleB-GPU-GTX960-x86_64-Debug-ANGLE', |
'Perf-iOS-Clang-iPad4-GPU-SGX554-Arm7-Debug', |
], |
}, |
@@ -62,7 +63,7 @@ def nanobench_flags(bot): |
if 'iOS' in bot: |
args.extend(['--skps', 'ignore_skps']) |
- config = ['8888', 'gpu', 'nonrendering', 'angle', 'hwui' ] |
+ config = ['8888', 'gpu', 'nonrendering', 'hwui' ] |
if 'AndroidOne' not in bot: |
config += [ 'f16', 'srgb' ] |
if '-GCE-' in bot: |
@@ -95,6 +96,9 @@ def nanobench_flags(bot): |
if 'Vulkan' in bot: |
config = ['vk'] |
+ if 'ANGLE' in bot: |
+ config.extend(['angle_gl_es2', 'angle_d3d11_es2']) |
+ |
args.append('--config') |
args.extend(config) |