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

Unified Diff: examples/android/BUILD.gn

Issue 898853006: Java content handler for Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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: examples/android/BUILD.gn
diff --git a/examples/android/BUILD.gn b/examples/android/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..49d214c91ce9774cd6a3de4ddeb0eccd4d3828cd
--- /dev/null
+++ b/examples/android/BUILD.gn
@@ -0,0 +1,23 @@
+import("//services/android/rules.gni")
+
+group("android") {
+ deps = [
+ ":android_example_service",
+ ]
+}
+
+mojo_java_android_application("android_example_service") {
+ sources = [
+ "App.java",
+ ]
+
+ main_class = "org.chromium.examples.android.App"
+
+ deps = [
+ "//base:base_java",
+ "//examples/apptest:bindings_java",
+ "//mojo/public/interfaces/application:application_java",
+ "//mojo/public/java:system",
+ "//mojo/public/java:bindings",
qsr 2015/02/05 16:50:07 Maybe those last 2 (at least the first one) should
etiennej 2015/02/06 16:22:29 Done.
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698