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

Unified Diff: chrome/browser/media/router/BUILD.gn

Issue 2727123002: [Media Router] Custom Controls 1 - Add MediaStatus, MediaRouteController, and mojo interfaces (Closed)
Patch Set: Address Derek's and Daniel's comments 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
Index: chrome/browser/media/router/BUILD.gn
diff --git a/chrome/browser/media/router/BUILD.gn b/chrome/browser/media/router/BUILD.gn
index 5e728ee6b958c0d0b4dcc014ec06ac63b867aa2b..9c6ecc3200b674ddb0bb090815486a9e07a805e7 100644
--- a/chrome/browser/media/router/BUILD.gn
+++ b/chrome/browser/media/router/BUILD.gn
@@ -8,6 +8,7 @@ import("//testing/test.gni")
static_library("router") {
deps = [
+ ":mojo_bindings_common",
"//base",
"//chrome/common:constants",
"//components/keyed_service/content",
@@ -51,6 +52,10 @@ static_library("router") {
"media_source.h",
"media_source_helper.cc",
"media_source_helper.h",
+ "media_status.cc",
+ "media_status.h",
+ "mojo/media_route_controller.cc",
+ "mojo/media_route_controller.h",
"offscreen_presentation_manager.cc",
"offscreen_presentation_manager.h",
"offscreen_presentation_manager_factory.cc",
@@ -97,13 +102,24 @@ static_library("router") {
}
}
+mojom("mojo_bindings_common") {
+ sources = [
+ "mojo/media_controller.mojom",
+ "mojo/media_status.mojom",
+ ]
+
+ public_deps = [
+ "//mojo/common:common_custom_types",
+ ]
+}
+
mojom("mojo_bindings") {
sources = [
"mojo/media_router.mojom",
]
public_deps = [
- "//mojo/common:common_custom_types",
+ ":mojo_bindings_common",
"//url/mojo:url_mojom_origin",
]
}
« no previous file with comments | « no previous file | chrome/browser/media/router/media_status.h » ('j') | chrome/browser/media/router/media_status.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698