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

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

Issue 2761853002: Conversational Speech tool, MultiEndCall class and unit tests via mocking (Closed)
Patch Set: BUILD deps fixed 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
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/conversational_speech/generator_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn
diff --git a/webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn b/webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn
index 4375c4efb35fb76d2bf2d63b6ee72ea7b2255947..ca5977fae8c3ec4e1610de5ee03f15fcbb2431ee 100644
--- a/webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn
+++ b/webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn
@@ -33,11 +33,21 @@ rtc_static_library("lib") {
sources = [
"config.cc",
"config.h",
+ "multiend_call.cc",
+ "multiend_call.h",
"timing.cc",
"timing.h",
+ "wavreader_abstract_factory.h",
+ "wavreader_adaptor.cc",
+ "wavreader_adaptor.h",
+ "wavreader_factory.cc",
+ "wavreader_factory.h",
+ "wavreader_interface.h",
]
deps = [
+ "//webrtc:webrtc_common",
"//webrtc/base:rtc_base_approved",
+ "//webrtc/common_audio",
]
visibility = [ ":*" ] # Only targets in this file can depend on this.
}
@@ -46,11 +56,15 @@ rtc_source_set("unittest") {
testonly = true
sources = [
"generator_unittest.cc",
+ "mock_wavreader.h",
+ "mock_wavreader_factory.cc",
+ "mock_wavreader_factory.h",
]
deps = [
":lib",
"//testing/gmock",
"//testing/gtest",
+ "//webrtc:webrtc_common",
"//webrtc/test:test_support",
]
}
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/test/conversational_speech/generator_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698