| Index: webrtc/modules/audio_processing/BUILD.gn
|
| diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
|
| index ea30a54d4145c9733e038c6da4d7254d895d1d14..86df81da5c3da3905fd4164ff6b3263547df51b5 100644
|
| --- a/webrtc/modules/audio_processing/BUILD.gn
|
| +++ b/webrtc/modules/audio_processing/BUILD.gn
|
| @@ -234,6 +234,7 @@ rtc_static_library("audio_processing") {
|
|
|
| defines = []
|
| deps = [
|
| + ":aec_dump_interface",
|
| "..:module_api",
|
| "../..:webrtc_common",
|
| "../../audio/utility:audio_frame_operations",
|
| @@ -308,6 +309,17 @@ rtc_static_library("audio_processing") {
|
| ]
|
| }
|
|
|
| +rtc_source_set("aec_dump_interface") {
|
| + sources = [
|
| + "include/aec_dump.cc",
|
| + "include/aec_dump.h",
|
| + ]
|
| +
|
| + deps = [
|
| + "../../base:rtc_base_approved",
|
| + ]
|
| +}
|
| +
|
| rtc_source_set("audio_processing_c") {
|
| visibility = [ ":*" ] # Only targets in this file can depend on this.
|
| sources = [
|
|
|