| Index: webrtc/modules/audio_processing/BUILD.gn
|
| diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
|
| index f24abbbc8b5d5bfcb743ebda5275445cf9aee74b..1e8cfbabe3167c5f0894861d78dd1c1289f946a4 100644
|
| --- a/webrtc/modules/audio_processing/BUILD.gn
|
| +++ b/webrtc/modules/audio_processing/BUILD.gn
|
| @@ -525,6 +525,7 @@ if (rtc_include_tests) {
|
| "config_unittest.cc",
|
| "echo_cancellation_impl_unittest.cc",
|
| "splitting_filter_unittest.cc",
|
| + "test/fake_recording_device_unittest.cc",
|
| "transient/dyadic_decimator_unittest.cc",
|
| "transient/file_utils.cc",
|
| "transient/file_utils.h",
|
| @@ -547,6 +548,7 @@ if (rtc_include_tests) {
|
| ]
|
|
|
| deps = [
|
| + ":analog_mic_simulation",
|
| ":audio_processing",
|
| ":audioproc_test_utils",
|
| "..:module_api",
|
| @@ -705,6 +707,16 @@ if (rtc_include_tests) {
|
| }
|
| }
|
|
|
| + rtc_source_set("analog_mic_simulation") {
|
| + sources = [
|
| + "test/fake_recording_device.cc",
|
| + "test/fake_recording_device.h",
|
| + ]
|
| + deps = [
|
| + "../../base:rtc_base_approved",
|
| + ]
|
| + }
|
| +
|
| if (rtc_enable_protobuf) {
|
| rtc_executable("unpack_aecdump") {
|
| testonly = true
|
| @@ -739,6 +751,7 @@ if (rtc_include_tests) {
|
| ]
|
|
|
| deps = [
|
| + ":analog_mic_simulation",
|
| ":audio_processing",
|
| ":audioproc_debug_proto",
|
| ":audioproc_protobuf_utils",
|
|
|