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

Unified Diff: shell/test/BUILD.gn

Issue 943053003: Simple multi-url support for mojo apps (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebase + fix android Created 5 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
Index: shell/test/BUILD.gn
diff --git a/shell/test/BUILD.gn b/shell/test/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..8d4b53c0778410b9fb3498f83658189d0545ccf8
--- /dev/null
+++ b/shell/test/BUILD.gn
@@ -0,0 +1,28 @@
+import("//mojo/public/mojo.gni")
+import("//mojo/public/mojo_application.gni")
+import("//mojo/public/tools/bindings/mojom.gni")
+import("//testing/test.gni")
+
+mojom("bindings") {
+ sources = [
+ "pingable.mojom",
+ ]
+}
+
+mojo_native_application("pingable_app") {
+ output_name = "pingable_app"
+
+ testonly = true
+
+ sources = [
+ "pingable_app.cc",
+ ]
+
+ deps = [
+ ":bindings",
+ "//mojo/public/cpp/application:standalone",
+ "//mojo/public/cpp/bindings:callback",
+ "//mojo/public/cpp/environment",
+ "//mojo/public/cpp/system",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698