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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 import("//mojo/public/tools/bindings/mojom.gni")
6
7 if (is_android) {
8 import("//mojo/android/rules.gni")
9
10 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.
11 sources = [
12 "task_launcher.cc",
13 ]
14
15 deps = [
16 "//base",
17 "//mojo/public/c/system",
18 "//mojo/public/cpp/application:standalone",
19 "//mojo/common",
20 "//mojo/public/cpp/system",
21 "//mojo/public/cpp/utility",
22 "//mojo/public/platform/native:system",
23 "//services/native_viewport:interfaces",
24 ]
25
26 java_sources = [ "src/org/chromium/mojo/task_launcher/TaskLauncher.java" ]
27
28 java_deps = [
29 "//base:base_java",
30 "//shell:java",
31 ]
32
33 jni_package = "shell"
34 }
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698