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

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

Issue 2727123002: [Media Router] Custom Controls 1 - Add MediaStatus, MediaRouteController, and mojo interfaces (Closed)
Patch Set: Change comment 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 | chrome/browser/media/router/media_status.h » ('j') | extensions/renderer/dispatcher.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/media/router/BUILD.gn
diff --git a/chrome/browser/media/router/BUILD.gn b/chrome/browser/media/router/BUILD.gn
index 5f4f64511f4a0b58ff062dd31884c16855513e8d..1ff859819643565bcc9908c0dd70622e20c59948 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",
@@ -54,6 +55,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",
@@ -100,12 +105,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_bindings_common",
"//mojo/common:common_custom_types",
"//net/interfaces:interfaces",
"//url/mojo:url_mojom_gurl",
« no previous file with comments | « no previous file | chrome/browser/media/router/media_status.h » ('j') | extensions/renderer/dispatcher.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698