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

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

Issue 2951523002: Media Remoting: Add mojo interfaces between browser and extension. (Closed)
Patch Set: Rebased again. Created 3 years, 5 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 0d98b3cab7df80378d377e50ef37c2856ed30c2a..9055e38ebba7162c99fc56107aeaa74f918cc220 100644
--- a/media/mojo/interfaces/BUILD.gn
+++ b/media/mojo/interfaces/BUILD.gn
@@ -52,10 +52,36 @@ mojom("constants") {
]
}
+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") {
« no previous file with comments | « chrome/renderer/resources/renderer_resources.grd ('k') | media/mojo/interfaces/mirror_service_remoting.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698