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

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

Issue 2846853002: audioproc_f with fake microphone. (Closed)
Patch Set: Initialized FakeRecordingDevice, added 'kind' command line flag, fixed bugs. 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
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/aec_dump_based_simulator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/BUILD.gn
diff --git a/webrtc/modules/audio_processing/BUILD.gn b/webrtc/modules/audio_processing/BUILD.gn
index 93ca85b3034034744d5aed736033725fd151c519..46a2d2dc7168204fdcdb5d7e8a880ca62ef8df86 100644
--- a/webrtc/modules/audio_processing/BUILD.gn
+++ b/webrtc/modules/audio_processing/BUILD.gn
@@ -508,6 +508,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",
@@ -532,6 +533,7 @@ if (rtc_include_tests) {
deps = [
":audio_processing",
":audioproc_test_utils",
+ ":fake_recording_device",
"..:module_api",
"../..:webrtc_common",
"../../base:gtest_prod",
@@ -686,6 +688,17 @@ if (rtc_include_tests) {
}
}
+ rtc_source_set("fake_recording_device") {
+ 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
@@ -724,6 +737,7 @@ if (rtc_include_tests) {
":audioproc_debug_proto",
":audioproc_protobuf_utils",
":audioproc_test_utils",
+ ":fake_recording_device",
"../../base:protobuf_utils",
"../../base:rtc_base_approved",
"../../common_audio:common_audio",
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/aec_dump_based_simulator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698