Remove obsolete target_arch == armv7.
Also, use arm_version >= 7 so things will continue to work when building for ARMv8 and higher targets. BUG=3906 R=kjellander@webrtc.org, tkchin@webrtc.org, zhongwei.yao@arm.com Review URL: https://webrtc-codereview.appspot.com/38379004 git-svn-id: http://webrtc.googlecode.com/svn/trunk@7957 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
@ -80,7 +80,7 @@
|
||||
'WEBRTC_LINUX',
|
||||
],
|
||||
}],
|
||||
['(target_arch=="arm" and arm_version==7) or target_arch=="armv7"', {
|
||||
['target_arch=="arm" and arm_version>=7', {
|
||||
'dependencies': [ 'isac_neon', ],
|
||||
'sources': [
|
||||
'lattice_armv7.S',
|
||||
@ -124,7 +124,7 @@
|
||||
},
|
||||
],
|
||||
'conditions': [
|
||||
['(target_arch=="arm" and arm_version==7) or target_arch=="armv7"', {
|
||||
['target_arch=="arm" and arm_version>=7', {
|
||||
'targets': [
|
||||
{
|
||||
'target_name': 'isac_neon',
|
||||
|
||||
Reference in New Issue
Block a user