| 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"
|
| +}
|
|
|