| Index: webrtc/modules/audio_processing/BUILD.gn
|
| diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
|
| index 84f25b5e8ed7cfae29013af1fb8fba48e5805ef3..dd9fb0816fc2973505062efaf2086a2327ad28d1 100644
|
| --- a/webrtc/modules/audio_processing/BUILD.gn
|
| +++ b/webrtc/modules/audio_processing/BUILD.gn
|
| @@ -250,7 +250,10 @@ rtc_static_library("audio_processing") {
|
|
|
| if (rtc_enable_protobuf) {
|
| defines += [ "WEBRTC_AUDIOPROC_DEBUG_DUMP" ]
|
| - deps += [ ":audioproc_debug_proto" ]
|
| + deps += [
|
| + ":audioproc_debug_proto",
|
| + "../../base:protobuf_utils",
|
| + ]
|
| }
|
|
|
| if (rtc_enable_intelligibility_enhancer) {
|
| @@ -563,6 +566,7 @@ if (rtc_include_tests) {
|
| ":audioproc_debug_proto",
|
| ":audioproc_protobuf_utils",
|
| ":audioproc_unittest_proto",
|
| + "../../base:protobuf_utils",
|
| ]
|
| sources += [
|
| "aec3/adaptive_fir_filter_unittest.cc",
|
| @@ -656,6 +660,11 @@ if (rtc_include_tests) {
|
| ":audioproc_test_utils",
|
| "//testing/gtest",
|
| ]
|
| +
|
| + if (rtc_enable_protobuf) {
|
| + deps += [ "../../base:protobuf_utils" ]
|
| + }
|
| +
|
| if (rtc_enable_intelligibility_enhancer) {
|
| defines = [ "WEBRTC_INTELLIGIBILITY_ENHANCER=1" ]
|
| } else {
|
| @@ -676,6 +685,7 @@ if (rtc_include_tests) {
|
| ":audioproc_protobuf_utils",
|
| ":audioproc_test_utils",
|
| "../..:webrtc_common",
|
| + "../../base:protobuf_utils",
|
| "../../base:rtc_base_approved",
|
| "../../common_audio",
|
| "../../system_wrappers:system_wrappers_default",
|
| @@ -700,6 +710,7 @@ if (rtc_include_tests) {
|
| ":audioproc_debug_proto",
|
| ":audioproc_protobuf_utils",
|
| ":audioproc_test_utils",
|
| + "../../base:protobuf_utils",
|
| "../../base:rtc_base_approved",
|
| "../../common_audio:common_audio",
|
| "../../system_wrappers",
|
| @@ -815,6 +826,7 @@ if (rtc_include_tests) {
|
| deps = [
|
| ":audioproc_debug_proto",
|
| "../..:webrtc_common",
|
| + "../../base:protobuf_utils",
|
| "../../base:rtc_base_approved",
|
| ]
|
| }
|
|
|