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

Unified Diff: url/mojo/BUILD.gn

Issue 1821073002: Mojo bindings: Fix typemap includes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: url/mojo/BUILD.gn
diff --git a/url/mojo/BUILD.gn b/url/mojo/BUILD.gn
index 965bb0e58dc956e18c45bb3fc961c8e5b3001921..8a93f2942d65f3dacd80e5a05214a307af0d1b94 100644
--- a/url/mojo/BUILD.gn
+++ b/url/mojo/BUILD.gn
@@ -4,24 +4,12 @@
import("//mojo/public/tools/bindings/mojom.gni")
-mojom("url_mojom") {
- sources = [
- "origin.mojom",
- "url.mojom",
- ]
-}
-
mojom("url_mojom_gurl") {
sources = [
"url.mojom",
]
- variant = "chromium"
typemaps = [ "gurl.typemap" ]
-
- public_deps = [
- ":url_mojom",
- ]
}
mojom("url_mojom_origin") {
@@ -29,11 +17,10 @@ mojom("url_mojom_origin") {
"origin.mojom",
]
- variant = "chromium"
typemaps = [ "origin.typemap" ]
public_deps = [
- ":url_mojom",
+ ":url_mojom_gurl",
]
}

Powered by Google App Engine
This is Rietveld 408576698