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

Unified Diff: mojo/public/interfaces/bindings/tests/BUILD.gn

Issue 1517043004: [mojo] Add typemap and variant support to generators (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@pickle3
Patch Set: Created 5 years 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: mojo/public/interfaces/bindings/tests/BUILD.gn
diff --git a/mojo/public/interfaces/bindings/tests/BUILD.gn b/mojo/public/interfaces/bindings/tests/BUILD.gn
index 802bd5803dfd62514ba323afb6f2bd98642f62b2..98547af17dff614bbd23ba397790228ae56fa055 100644
--- a/mojo/public/interfaces/bindings/tests/BUILD.gn
+++ b/mojo/public/interfaces/bindings/tests/BUILD.gn
@@ -68,3 +68,25 @@ mojom("versioning_test_client_interfaces") {
with_environment = false
}
+
+mojom("test_interfaces_chromium") {
+ sources = [
+ "test_native_types.mojom",
+ ]
+
+ variant = "chromium"
+ typemaps = [ "chromium_test.typemap" ]
+
+ with_environment = false
+}
+
+mojom("test_interfaces_blink") {
+ sources = [
+ "test_native_types.mojom",
+ ]
+
+ variant = "blink"
+ typemaps = [ "blink_test.typemap" ]
+
+ with_environment = false
+}

Powered by Google App Engine
This is Rietveld 408576698