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

Unified Diff: webrtc/common_audio/BUILD.gn

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
« no previous file with comments | « no previous file | webrtc/common_audio/common_audio.gyp » ('j') | webrtc/common_audio/common_audio.gyp » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/common_audio/BUILD.gn
diff --git a/webrtc/common_audio/BUILD.gn b/webrtc/common_audio/BUILD.gn
index 3d4a3321a0ed68cbe45c9ad9507ba6bddc27a7e0..e6d14ca725f7301fb6d90d7c3eb1020b0049a5cd 100644
--- a/webrtc/common_audio/BUILD.gn
+++ b/webrtc/common_audio/BUILD.gn
@@ -129,7 +129,7 @@ source_set("common_audio") {
"signal_processing/spl_sqrt_floor_arm.S",
]
- if (arm_version >= 7) {
+ if (rtc_build_armv7_neon) {
Andrew MacDonald 2015/06/17 05:36:32 This shouldn't change anything; it amounts to the
Mostyn Bramley-Moore 2015/06/17 07:42:26 "arm_version>=7" is wrong because neon is optional
jridges 2015/06/17 15:56:49 This clause is doing two independent things which
deps += [ ":common_audio_neon" ]
sources += [ "signal_processing/filter_ar_fast_q12_armv7.S" ]
} else {
« no previous file with comments | « no previous file | webrtc/common_audio/common_audio.gyp » ('j') | webrtc/common_audio/common_audio.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698