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

Unified Diff: shell/android/task_launcher/BUILD.gn

Issue 1280613003: Allow native_viewport to create new native windows on demand on Android. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Refactor Created 5 years, 4 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/android/task_launcher/BUILD.gn
diff --git a/shell/android/task_launcher/BUILD.gn b/shell/android/task_launcher/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..74380bed2925c3166cf65a16834bc5e7356403c1
--- /dev/null
+++ b/shell/android/task_launcher/BUILD.gn
@@ -0,0 +1,35 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//mojo/public/tools/bindings/mojom.gni")
+
+if (is_android) {
+ import("//mojo/android/rules.gni")
+
+ mojo_android_application("task_launcher") {
qsr 2015/08/07 11:18:01 Couldn't this be a pure java application? Also, m
etiennej 2015/08/07 12:22:11 I discovered JavaApplicationRegistery, so done.
+ sources = [
+ "task_launcher.cc",
+ ]
+
+ deps = [
+ "//base",
+ "//mojo/public/c/system",
+ "//mojo/public/cpp/application:standalone",
+ "//mojo/common",
+ "//mojo/public/cpp/system",
+ "//mojo/public/cpp/utility",
+ "//mojo/public/platform/native:system",
+ "//services/native_viewport:interfaces",
+ ]
+
+ java_sources = [ "src/org/chromium/mojo/task_launcher/TaskLauncher.java" ]
+
+ java_deps = [
+ "//base:base_java",
+ "//shell:java",
+ ]
+
+ jni_package = "shell"
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698