Skip to content

Commit

Permalink
Bug 819246 - arm_neon is meaningful only when armv7 is true. r=jesup
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven Lee committed Dec 10, 2012
1 parent 9a25c4e commit 0d339d0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 18 deletions.
16 changes: 9 additions & 7 deletions media/webrtc/trunk/src/build/common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -159,13 +159,15 @@
'WEBRTC_ARCH_ARM_V7',
'WEBRTC_DETECT_ARM_NEON',
],
}],
['arm_neon==1', {
'defines': [
'WEBRTC_ARCH_ARM_NEON',
],
'defines!': [
'WEBRTC_DETECT_ARM_NEON',
'conditions': [
['arm_neon==1', {
'defines': [
'WEBRTC_ARCH_ARM_NEON',
],
'defines!': [
'WEBRTC_DETECT_ARM_NEON',
],
}],
],
}],
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,17 +74,19 @@
'sources!': [
'filter_ar_fast_q12.c',
],
}],
['arm_neon==1', {
'sources': [
'cross_correlation_neon.s',
'downsample_fast_neon.s',
'min_max_operations_neon.s',
'vector_scaling_operations_neon.s',
],
'sources!': [
'cross_correlation.c',
'downsample_fast.c',
'conditions': [
['arm_neon==1', {
'sources': [
'cross_correlation_neon.s',
'downsample_fast_neon.s',
'min_max_operations_neon.s',
'vector_scaling_operations_neon.s',
],
'sources!': [
'cross_correlation.c',
'downsample_fast.c',
],
}],
],
}],
],
Expand Down

0 comments on commit 0d339d0

Please sign in to comment.