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

Unified Diff: webrtc/modules/audio_processing/BUILD.gn

Issue 2647293006: Fixing cross-compiling issues on android arm (Closed)
Patch Set: Using rtc_build_with_neon to fix deps Created 3 years, 11 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 | « webrtc/modules/audio_coding/BUILD.gn ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/BUILD.gn
diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
index 4f3ea13efb73d2f570d114f5a8db6e687892eb00..94afaa8f5b5f9dd3bc6820fcd5d802a6691be023 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -284,6 +284,10 @@ rtc_source_set("audio_processing_c") {
"../../common_audio",
"../../system_wrappers",
]
+
+ if (rtc_build_with_neon) {
+ deps += [ ":audio_processing_neon_c" ]
+ }
}
if (rtc_enable_protobuf) {
@@ -365,6 +369,10 @@ if (rtc_build_with_neon) {
}
rtc_static_library("audio_processing_neon_c") {
+ # TODO(mbonadei): Remove (bugs.webrtc.org/6828)
+ # Errors on cyclic dependency with :audio_processing_c if enabled.
+ check_includes = false
+
sources = [
"ns/nsx_core_neon.c",
]
@@ -386,7 +394,6 @@ if (rtc_build_with_neon) {
]
}
deps = [
- ":audio_processing_c",
"../../base:rtc_base_approved",
]
}
« no previous file with comments | « webrtc/modules/audio_coding/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698