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

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

Issue 2781573002: Conversational Speech tool, MultiEndCall::CheckTiming() and tests (Closed)
Patch Set: missing include to get std::back_inserter working on win targets 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/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 ca5977fae8c3ec4e1610de5ee03f15fcbb2431ee..10601fed3c373421a1a8b7da6eaf2fcce6073ffe 100644
--- a/webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn
+++ b/webrtc/modules/audio_processing/test/conversational_speech/BUILD.gn
@@ -6,7 +6,7 @@
# in the file PATENTS. All contributing project authors may
# be found in the AUTHORS file in the root of the source tree.
-import("//webrtc/webrtc.gni")
+import("../../../../../webrtc/webrtc.gni")
group("conversational_speech") {
testonly = true
@@ -22,9 +22,9 @@ rtc_executable("conversational_speech_generator") {
]
deps = [
":lib",
+ "../../../../../webrtc/base:rtc_base_approved",
+ "../../../../../webrtc/test:test_support",
"//third_party/gflags",
- "//webrtc/base:rtc_base_approved",
- "//webrtc/test:test_support",
]
}
@@ -45,9 +45,9 @@ rtc_static_library("lib") {
"wavreader_interface.h",
]
deps = [
- "//webrtc:webrtc_common",
- "//webrtc/base:rtc_base_approved",
- "//webrtc/common_audio",
+ "../../../../../webrtc:webrtc_common",
+ "../../../../../webrtc/base:rtc_base_approved",
+ "../../../../../webrtc/common_audio",
]
visibility = [ ":*" ] # Only targets in this file can depend on this.
}
@@ -56,15 +56,17 @@ rtc_source_set("unittest") {
testonly = true
sources = [
"generator_unittest.cc",
+ "mock_wavreader.cc",
"mock_wavreader.h",
"mock_wavreader_factory.cc",
"mock_wavreader_factory.h",
]
deps = [
":lib",
+ "../../../../../webrtc:webrtc_common",
+ "../../../../../webrtc/base:rtc_base_approved",
+ "../../../../../webrtc/test:test_support",
"//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