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

Unified Diff: mojo/public/tools/bindings/chromium_bindings_configuration.gni

Issue 2691483005: Mojo Bindings: Put typemap files in the build dependency tree (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « mojo/public/tools/bindings/blink_bindings_configuration.gni ('k') | mojo/public/tools/bindings/mojom.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/public/tools/bindings/chromium_bindings_configuration.gni
diff --git a/mojo/public/tools/bindings/chromium_bindings_configuration.gni b/mojo/public/tools/bindings/chromium_bindings_configuration.gni
index 55f38fd02a1206126859294efeff6aa2c4b02bba..b075df8648d5f3924256f0f852aa344cd34b376e 100644
--- a/mojo/public/tools/bindings/chromium_bindings_configuration.gni
+++ b/mojo/public/tools/bindings/chromium_bindings_configuration.gni
@@ -56,7 +56,10 @@ foreach(typemap_import, _typemap_imports) {
typemaps = []
foreach(typemap, _typemaps) {
- typemaps += [ read_file(typemap, "scope") ]
+ typemaps += [ {
+ filename = typemap
+ config = read_file(typemap, "scope")
+ } ]
}
_typemaps_mac = []
@@ -69,5 +72,8 @@ foreach(typemap_import, _typemap_imports_mac) {
typemaps_mac = []
foreach(typemap, _typemaps_mac) {
- typemaps_mac += [ read_file(typemap, "scope") ]
+ typemaps_mac += [ {
+ filename = typemap
+ config = read_file(typemap, "scope")
+ } ]
}
« no previous file with comments | « mojo/public/tools/bindings/blink_bindings_configuration.gni ('k') | mojo/public/tools/bindings/mojom.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698