aboutsummaryrefslogtreecommitdiffhomepage
path: root/infra/bots/recipes/swarm_compile.py
diff options
context:
space:
mode:
Diffstat (limited to 'infra/bots/recipes/swarm_compile.py')
-rw-r--r--infra/bots/recipes/swarm_compile.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/infra/bots/recipes/swarm_compile.py b/infra/bots/recipes/swarm_compile.py
index 8c0908486c..022b0cd9ac 100644
--- a/infra/bots/recipes/swarm_compile.py
+++ b/infra/bots/recipes/swarm_compile.py
@@ -61,11 +61,7 @@ def build_targets_from_builder_dict(builder_dict):
"""Return a list of targets to build, depending on the builder type."""
if builder_dict.get('extra_config') == 'iOS':
return ['iOSShell']
- if 'SAN' in builder_dict.get('extra_config', ''):
- # 'most' does not compile under MSAN.
- return ['dm', 'nanobench']
- else:
- return ['most']
+ return ['most']
def get_extra_env_vars(builder_dict):