summaryrefslogtreecommitdiff
path: root/common_audio
diff options
context:
space:
mode:
authorkjellander@webrtc.org <kjellander@webrtc.org>2014-09-07 17:36:10 +0000
committerkjellander@webrtc.org <kjellander@webrtc.org>2014-09-07 17:36:10 +0000
commit4ad10d659f2e27b129aa510c35a49165ba348a03 (patch)
tree5b3776d28c56b708739dd32e91b1f092dfeb1ab7 /common_audio
parent729d5a92e805a22c51c6cfd928275852e7d17a99 (diff)
downloadwebrtc-4ad10d659f2e27b129aa510c35a49165ba348a03.tar.gz
GN: Prefix WebRTC specific variables with "rtc_"
BUG=3441 TESTED=Trybots + Running GN in a Chromium checkout with src/third_party/webrtc symlinked to the WebRTC checkout with this CL applied, both with the default GN settings and using: --args="os=\"android\" cpu_arch=\"arm\"" R=brettw@chromium.org Review URL: https://webrtc-codereview.appspot.com/27379004 git-svn-id: http://webrtc.googlecode.com/svn/trunk/webrtc@7095 4adac7df-926f-26a2-2b94-8c16560cd09d
Diffstat (limited to 'common_audio')
-rw-r--r--common_audio/BUILD.gn4
1 files changed, 2 insertions, 2 deletions
diff --git a/common_audio/BUILD.gn b/common_audio/BUILD.gn
index 6b5fe9de..f9bbd6a1 100644
--- a/common_audio/BUILD.gn
+++ b/common_audio/BUILD.gn
@@ -170,7 +170,7 @@ if (cpu_arch == "x86" || cpu_arch == "x64") {
}
}
-if (build_armv7_neon) {
+if (rtc_build_armv7_neon) {
source_set("common_audio_neon") {
sources = [
"fir_filter_neon.cc",
@@ -199,7 +199,7 @@ if (build_armv7_neon) {
]
# Disable LTO in audio_processing_neon target due to compiler bug.
- if (use_lto) {
+ if (rtc_use_lto) {
cflags -= [
"-flto",
"-ffat-lto-objects",