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

Side by Side Diff: sky/shell/BUILD.gn

Issue 995613002: Implement a basic IME-aware input element (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 assert(is_android) 5 assert(is_android)
6 6
7 import("//build/config/android/config.gni") 7 import("//build/config/android/config.gni")
8 import("//build/config/android/rules.gni") 8 import("//build/config/android/rules.gni")
9 9
10 generate_jni("jni_headers") { 10 generate_jni("jni_headers") {
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 "org/domokit/sky/shell/SkyMain.java", 82 "org/domokit/sky/shell/SkyMain.java",
83 ] 83 ]
84 84
85 deps = [ 85 deps = [
86 "//base:base_java", 86 "//base:base_java",
87 "//mojo/android:system_java", 87 "//mojo/android:system_java",
88 "//mojo/public/interfaces/application:application_java", 88 "//mojo/public/interfaces/application:application_java",
89 "//mojo/public/java:bindings", 89 "//mojo/public/java:bindings",
90 "//mojo/public/java:system", 90 "//mojo/public/java:system",
91 "//mojo/services/network/public/interfaces:interfaces_java", 91 "//mojo/services/network/public/interfaces:interfaces_java",
92 "//sky/services/keyboard",
92 "//sky/services/oknet", 93 "//sky/services/oknet",
93 "//sky/services/viewport:viewport_java", 94 "//sky/services/viewport:viewport_java",
94 ] 95 ]
95 } 96 }
96 97
97 copy_ex("assets") { 98 copy_ex("assets") {
98 clear_dir = true 99 clear_dir = true
99 dest = "$root_build_dir/sky_shell/assets" 100 dest = "$root_build_dir/sky_shell/assets"
100 sources = [ 101 sources = [
101 "$root_build_dir/icudtl.dat", 102 "$root_build_dir/icudtl.dat",
102 ] 103 ]
103 deps = [ 104 deps = [
104 "//third_party/icu", 105 "//third_party/icu",
105 ] 106 ]
106 } 107 }
OLDNEW
« no previous file with comments | « sky/services/keyboard/org/domokit/keyboard/KeyboardServiceImpl.java ('k') | sky/shell/org/domokit/sky/shell/PlatformView.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698