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

Unified Diff: content/common/BUILD.gn

Issue 2622993002: [Presentation API] Move presentation.mojom to content/common/presentation (Closed)
Patch Set: Fix presentation_service_delegate. DEPS failure Created 3 years, 11 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: content/common/BUILD.gn
diff --git a/content/common/BUILD.gn b/content/common/BUILD.gn
index cd2b8dc2c83ff082f46ad68a5451a96e3df80c2a..a2cd62957f68bb989daa9ee8cd8c11e05dd5f380 100644
--- a/content/common/BUILD.gn
+++ b/content/common/BUILD.gn
@@ -340,6 +340,7 @@ source_set("common") {
public_deps = [
":mojo_bindings",
+ ":mojo_bindings_with_js",
"//cc",
"//gpu/command_buffer/common",
"//ipc",
@@ -608,3 +609,22 @@ mojom("mojo_bindings") {
export_define = "CONTENT_IMPLEMENTATION=1"
export_header = "content/common/content_export.h"
}
+
+mojom("mojo_bindings_with_js") {
+ # This interface is internal to content.
+ visibility = [ "//content/*" ]
+
+ sources = [
+ "presentation/presentation.mojom",
+ ]
+
+ import_dirs = [ "//mojo/services" ]
+
+ public_deps = [
+ "//url/mojo:url_mojom_gurl",
+ ]
+
+ export_class_attribute = "CONTENT_EXPORT"
+ export_define = "CONTENT_IMPLEMENTATION=1"
+ export_header = "content/common/content_export.h"
+}
« no previous file with comments | « content/browser/presentation/presentation_type_converters_unittest.cc ('k') | content/common/presentation/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698