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

Unified Diff: tools/mb/mb_config.pyl

Issue 2060333002: [Cronet] Enforce ARMv7 Cronet doesn't inadvertently use ARM Neon instructions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: disable neon on bots Created 4 years, 5 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
Index: tools/mb/mb_config.pyl
diff --git a/tools/mb/mb_config.pyl b/tools/mb/mb_config.pyl
index 0a9eaeffa076b9578245c312085f2e56fb9745da..c4db203a9511d57598ae3aca8f0e1fdb662d7e81 100644
--- a/tools/mb/mb_config.pyl
+++ b/tools/mb/mb_config.pyl
@@ -934,11 +934,11 @@
'android_cronet_data_reduction_proxy_gn_release_bot_minimal_symbols': [
'android', 'cronet', 'data_reduction_proxy', 'gn',
- 'release_bot_minimal_symbols', 'arm'
+ 'release_bot_minimal_symbols', 'arm_no_neon'
],
'android_cronet_gn_debug_static_bot': [
- 'android', 'cronet', 'gn', 'debug_static_bot', 'arm'
+ 'android', 'cronet', 'gn', 'debug_static_bot', 'arm_no_neon'
],
'android_cronet_gn_debug_static_bot_arm64': [
@@ -950,7 +950,7 @@
],
'android_cronet_gn_release_bot_minimal_symbols': [
- 'android', 'cronet', 'gn', 'release_bot_minimal_symbols', 'arm'
+ 'android', 'cronet', 'gn', 'release_bot_minimal_symbols', 'arm_no_neon'
],
'android_cronet_gn_release_bot_minimal_symbols_arm64': [
@@ -962,8 +962,8 @@
],
'android_cronet_gn_release_bot_minimal_symbols_clang_asan': [
- 'android', 'cronet', 'gn', 'release_bot_minimal_symbols', 'arm', 'clang',
- 'asan'
+ 'android', 'cronet', 'gn', 'release_bot_minimal_symbols', 'arm_no_neon',
+ 'clang', 'asan'
],
'android_cronet_gn_release_bot_minimal_symbols_mipsel': [
@@ -1896,6 +1896,11 @@
'gyp_defines': 'target_arch=arm',
},
+ 'arm_no_neon': {
+ 'gn_args': 'target_cpu="arm" arm_use_neon=false',
jbudorick 2016/07/19 18:49:16 I don't think this should duplicate the arm parame
pauljensen 2016/07/20 15:04:38 Done.
+ 'gyp_defines': 'target_arch=arm arm_neon=0',
+ },
+
'arm64': {
'gn_args': 'target_cpu="arm64"',
'gyp_defines': 'target_arch=arm64',
« components/cronet/tools/check_no_neon.py ('K') | « components/cronet/tools/cr_cronet.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698