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

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

Issue 2778783002: AecDump interface (Closed)
Patch Set: Implemented most of Karl's suggestions. Created 3 years, 9 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 36f55756f825fe0b719d6a6c0d0ca1563ade5c65..11ea508eaeca89a2eb6634fef3e41e66aa96e177 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -233,7 +233,14 @@ rtc_static_library("audio_processing") {
"../../audio/utility:audio_frame_operations",
"../../base:gtest_prod",
"../audio_coding:isac",
+ "aec_dumper",
]
+ if (rtc_enable_protobuf) {
+ # Will change when AEC-dumper is fully implemented.
+ deps += [ "aec_dumper:aec_dumper_no_pb" ]
+ } else {
+ deps += [ "aec_dumper:aec_dumper_no_pb" ]
+ }
public_deps = [
":audio_processing_c",
]
@@ -248,6 +255,7 @@ rtc_static_library("audio_processing") {
defines += [ "WEBRTC_UNTRUSTED_DELAY" ]
}
+ # Will be removed when AEC-dumper is fully implemented.
if (rtc_enable_protobuf) {
defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ]
deps += [ ":audioproc_debug_proto" ]
@@ -530,6 +538,7 @@ if (rtc_include_tests) {
"../../system_wrappers:system_wrappers",
"../../test:test_support",
"../audio_coding:neteq_unittest_tools",
+ "aec_dumper:aec_dumper_unittests",
"test/conversational_speech:unittest",
"//testing/gmock",
"//testing/gtest",
@@ -703,6 +712,7 @@ if (rtc_include_tests) {
":audioproc_protobuf_utils",
":audioproc_test_utils",
"../../base:rtc_base_approved",
+ "../../base:rtc_task_queue",
"../../common_audio:common_audio",
"../../system_wrappers",
"../../system_wrappers:system_wrappers_default",

Powered by Google App Engine
This is Rietveld 408576698