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", |
] |
} |