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

Unified Diff: remoting/client/BUILD.gn

Issue 2052723002: Adding an interface to allow extention of the audio player for CRD and iOS. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adding missing dep on proto for test. Created 4 years, 6 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 | remoting/client/audio_consumer.h » ('j') | remoting/client/audio_consumer.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/BUILD.gn
diff --git a/remoting/client/BUILD.gn b/remoting/client/BUILD.gn
index b8f155888d0cf2df9486f5598dc8eade1bac5261..d549eee9e12645547d8f7a34c895501bae6f1b66 100644
--- a/remoting/client/BUILD.gn
+++ b/remoting/client/BUILD.gn
@@ -41,6 +41,21 @@ source_set("client") {
}
}
+source_set("test_support") {
+ testonly = true
+
+ sources = [
+ "fake_audio_consumer.cc",
+ "fake_audio_consumer.h",
+ ]
+
+ public_deps = [
+ "//remoting/protocol:test_support",
+ "//testing/gmock",
+ "//third_party/protobuf:protobuf_lite",
+ ]
+}
+
source_set("unit_tests") {
testonly = true
@@ -48,6 +63,7 @@ source_set("unit_tests") {
# be compiled on all platforms.
set_sources_assignment_filter([])
sources = [
+ "audio_decode_scheduler_unittest.cc",
"audio_player_unittest.cc",
"chromoting_client_runtime_unittest.cc",
"client_status_logger_unittest.cc",
@@ -70,6 +86,7 @@ source_set("unit_tests") {
deps = [
":client",
+ ":test_support",
"//remoting/proto",
"//testing/gmock",
"//testing/gtest",
« no previous file with comments | « no previous file | remoting/client/audio_consumer.h » ('j') | remoting/client/audio_consumer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698