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

Unified Diff: mojo/shell/test/BUILD.gn

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 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
« no previous file with comments | « mojo/shell/task_runners.cc ('k') | mojo/shell/test/pingable.mojom » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/shell/test/BUILD.gn
diff --git a/mojo/shell/test/BUILD.gn b/mojo/shell/test/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..7ca52ff8dd6824a2724fabe8e61bc9eb2d153ab3
--- /dev/null
+++ b/mojo/shell/test/BUILD.gn
@@ -0,0 +1,28 @@
+import("//third_party/mojo/src/mojo/public/mojo.gni")
+import("//third_party/mojo/src/mojo/public/mojo_application.gni")
+import("//third_party/mojo/src/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",
+ "//third_party/mojo/src/mojo/public/cpp/application:standalone",
+ "//third_party/mojo/src/mojo/public/cpp/bindings:callback",
+ "//third_party/mojo/src/mojo/public/cpp/environment",
+ "//third_party/mojo/src/mojo/public/cpp/system",
+ ]
+}
« no previous file with comments | « mojo/shell/task_runners.cc ('k') | mojo/shell/test/pingable.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698