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

Unified Diff: media/mojo/interfaces/BUILD.gn

Issue 2951523002: Media Remoting: Add mojo interfaces between browser and extension. (Closed)
Patch Set: Fix compile failure on Android bots. Created 3 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
Index: media/mojo/interfaces/BUILD.gn
diff --git a/media/mojo/interfaces/BUILD.gn b/media/mojo/interfaces/BUILD.gn
index 88e8bcb535ed7b2807776b853bc05609ef2d1f45..a81becbb06fe9e0df806f3bcdd9b9800f9d5cbac 100644
--- a/media/mojo/interfaces/BUILD.gn
+++ b/media/mojo/interfaces/BUILD.gn
@@ -46,10 +46,36 @@ mojom("interfaces") {
use_once_callback = false
}
+mojom("remoting_common") {
+ sources = [
+ "remoting_common.mojom",
+ ]
+
+ # TODO(crbug.com/699569): Convert to use the new JS bindings.
+ use_new_js_bindings = false
+}
+
+mojom("mirror_service_remoting") {
+ sources = [
+ "mirror_service_remoting.mojom",
+ ]
+
+ public_deps = [
+ ":remoting_common",
+ ]
+
+ # TODO(crbug.com/699569): Convert to use the new JS bindings.
+ use_new_js_bindings = false
+}
+
mojom("remoting") {
sources = [
"remoting.mojom",
]
+
+ public_deps = [
+ ":remoting_common",
+ ]
}
mojom("test_interfaces") {

Powered by Google App Engine
This is Rietveld 408576698