Chromium Code Reviews| 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.
|
| + ] |
| +} |