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

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

Issue 2778783002: AecDump interface (Closed)
Patch Set: Next version; large changes to interface. Created 3 years, 8 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
Index: webrtc/modules/audio_processing/BUILD.gn
diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
index 053bf1d450a636cafb2fd109da32109b55890e98..f6b1f7e137120c015316f066b0cdc356e9c39676 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -231,6 +231,7 @@ rtc_static_library("audio_processing") {
defines = []
deps = [
+ ":aec_dump_interface",
"../..:webrtc_common",
"../../audio/utility:audio_frame_operations",
"../../base:gtest_prod",
@@ -303,6 +304,17 @@ rtc_static_library("audio_processing") {
]
}
+rtc_source_set("aec_dump_interface") {
+ # Includes audio_processing.h. TODO(aleloi): add a dependency for
+ # that when the header is not part of :audio_processing.
+ check_includes = false
+
+ sources = [
+ "include/aec_dump.cc",
+ "include/aec_dump.h",
+ ]
+}
+
rtc_source_set("audio_processing_c") {
visibility = [ ":*" ] # Only targets in this file can depend on this.
sources = [
@@ -567,6 +579,7 @@ if (rtc_include_tests) {
":audioproc_debug_proto",
":audioproc_protobuf_utils",
":audioproc_unittest_proto",
+ "aec_dump:aec_dump_unittests",
]
sources += [
"aec3/adaptive_fir_filter_unittest.cc",

Powered by Google App Engine
This is Rietveld 408576698