Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(22)

Unified Diff: tools/buildbot_spec.py

Issue 1612753002: Stop testing builds with runtime-detected NEON (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: sort Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/buildbot_spec.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/buildbot_spec.py
diff --git a/tools/buildbot_spec.py b/tools/buildbot_spec.py
index 8049b618719e2d143751c96cebaffacf2a5b307b..95637515d057bb867ec8b2957298cd56ac74d528 100755
--- a/tools/buildbot_spec.py
+++ b/tools/buildbot_spec.py
@@ -215,16 +215,16 @@ def device_cfg(builder_dict):
}.get(builder_dict['target_arch'], 'arm_v7_neon')
elif builder_dict.get('os') == 'Android':
return {
- 'AndroidOne': 'arm_v7_neon',
- 'GalaxyS3': 'arm_v7_neon',
- 'GalaxyS4': 'arm_v7_neon',
- 'Nexus5': 'arm_v7', # This'd be 'nexus_5', but we simulate no-NEON Clank.
- 'Nexus6': 'arm_v7_neon',
- 'Nexus7': 'nexus_7',
- 'Nexus9': 'nexus_9',
- 'Nexus10': 'nexus_10',
- 'NexusPlayer': 'x86',
+ 'AndroidOne': 'arm_v7_neon',
+ 'GalaxyS3': 'arm_v7_neon',
+ 'GalaxyS4': 'arm_v7_neon',
'NVIDIA_Shield': 'arm64',
+ 'Nexus10': 'arm_v7_neon',
+ 'Nexus5': 'arm_v7_neon',
+ 'Nexus6': 'arm_v7_neon',
+ 'Nexus7': 'arm_v7_neon',
+ 'Nexus9': 'arm64',
+ 'NexusPlayer': 'x86',
}[builder_dict['model']]
# ChromeOS.
« no previous file with comments | « tools/buildbot_spec.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698