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

Unified Diff: media/remoting/BUILD.gn

Issue 2389473002: Media Remoting: Add RemotingController. (Closed)
Patch Set: Fix bug on Android. Created 4 years, 2 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
Index: media/remoting/BUILD.gn
diff --git a/media/remoting/BUILD.gn b/media/remoting/BUILD.gn
index 90aeeada0ad0bbe213e65766c62cf364d838d5ce..f26e9f1640f101e30b0aebba5773cf34b3965c31 100644
--- a/media/remoting/BUILD.gn
+++ b/media/remoting/BUILD.gn
@@ -29,17 +29,34 @@ source_set("rpc") {
]
}
+source_set("remoting") {
+ sources = [
+ "remoting_controller.cc",
+ "remoting_controller.h",
+ "remoting_renderer_factory.cc",
+ "remoting_renderer_factory.h",
+ ]
+ deps = [
+ "//base",
+ "//media",
+ "//media/mojo/interfaces:remoting",
+ ]
+}
+
test("media_remoting_unittests") {
sources = [
+ "remoting_controller_unittest.cc",
"rpc/proto_utils_unittest.cc",
]
deps = [
+ ":remoting",
":rpc",
"//base",
- "//base/test:run_all_unittests",
"//base/test:test_support",
"//media",
+ "//media/mojo/interfaces:remoting",
+ "//mojo/edk/test:run_all_unittests",
"//testing/gmock",
"//testing/gtest",
"//ui/gfx:test_support",

Powered by Google App Engine
This is Rietveld 408576698