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

Unified Diff: webrtc/common_audio/common_audio.gyp

Issue 1187833002: fix armv7 non-neon webrtc builds (Closed) Base URL: https://chromium.googlesource.com/external/webrtc@master
Patch Set: quoting fix Created 5 years, 6 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
« webrtc/common_audio/BUILD.gn ('K') | « webrtc/common_audio/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_audio/common_audio.gyp
diff --git a/webrtc/common_audio/common_audio.gyp b/webrtc/common_audio/common_audio.gyp
index 36e6a65ebd086d5cfca542df3344d72e3add683b..9f7be2d8e192b925ca73ac9a1381cd371bf4c707 100644
--- a/webrtc/common_audio/common_audio.gyp
+++ b/webrtc/common_audio/common_audio.gyp
@@ -146,7 +146,7 @@
'signal_processing/spl_sqrt_floor.c',
],
'conditions': [
- ['arm_version>=7', {
+ ['(arm_version>=7 and (arm_neon==1 or arm_neon_optional==1)) or target_arch=="arm64"', {
Andrew MacDonald 2015/06/17 03:29:23 This is inside a target_arch=="arm" block so is ce
Andrew MacDonald 2015/06/17 05:36:32 I think this should just be 'arm_neon==1 or arm_ne
Mostyn Bramley-Moore 2015/06/17 07:42:26 I tried this earlier, but got lost in the nested g
Mostyn Bramley-Moore 2015/06/17 07:42:26 I don't think it's incorrect, but this is definite
zhongwei 2015/06/17 11:44:50 target_arch=="arm64" is not needed here. arm64 is
jridges 2015/06/17 15:56:49 There is the same problem here with ARMv7 being co
'dependencies': ['common_audio_neon',],
'sources': [
'signal_processing/filter_ar_fast_q12_armv7.S',
@@ -212,7 +212,7 @@
},
], # targets
}],
- ['target_arch=="arm" and arm_version>=7 or target_arch=="arm64"', {
+ ['(target_arch=="arm" and arm_version>=7 and (arm_neon==1 or arm_neon_optional==1)) or target_arch=="arm64"', {
jridges 2015/06/17 15:56:49 Is there a definitive answer as to when the arm_ne
'targets': [
{
'target_name': 'common_audio_neon',
« webrtc/common_audio/BUILD.gn ('K') | « webrtc/common_audio/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698