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', |