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

Side by Side Diff: content/public/android/BUILD.gn

Issue 699333003: Support InputMethodManager#updateCursorAnchorInfo for Android 5.0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments from jdduke@ and aelias@ Created 6 years, 1 month 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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 import("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/android/rules.gni") 6 import("//build/config/android/rules.gni")
7 7
8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py", 8 content_jni_gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("../../content_jni.gypi") ], 9 [ rebase_path("../../content_jni.gypi") ],
10 "scope", 10 "scope",
(...skipping 14 matching lines...) Expand all
25 "//ui/android:ui_java_resources", 25 "//ui/android:ui_java_resources",
26 ] 26 ]
27 custom_package = "org.chromium.content" 27 custom_package = "org.chromium.content"
28 resource_dirs = [ "java/res" ] 28 resource_dirs = [ "java/res" ]
29 } 29 }
30 30
31 android_library("content_java") { 31 android_library("content_java") {
32 deps = [ 32 deps = [
33 ":content_java_resources", 33 ":content_java_resources",
34 "//base:base_java", 34 "//base:base_java",
35 "//cc:cc_java",
35 "//media/base/android:media_java", 36 "//media/base/android:media_java",
36 "//mojo/android:system_java", 37 "//mojo/android:system_java",
37 "//mojo/public/java:bindings", 38 "//mojo/public/java:bindings",
38 "//mojo/public/java:system", 39 "//mojo/public/java:system",
39 "//net/android:net_java", 40 "//net/android:net_java",
40 "//ui/android:ui_java", 41 "//ui/android:ui_java",
41 "//third_party/jsr-305:jsr_305_javalib", 42 "//third_party/jsr-305:jsr_305_javalib",
42 43
43 #"//content:content_common", 44 #"//content:content_common",
44 ] 45 ]
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 "//net/android:net_java_test_support", 170 "//net/android:net_java_test_support",
170 "//ui/android:ui_java", 171 "//ui/android:ui_java",
171 ":content_java", 172 ":content_java",
172 ] 173 ]
173 174
174 DEPRECATED_java_in_dir = "javatests/src" 175 DEPRECATED_java_in_dir = "javatests/src"
175 } 176 }
176 177
177 178
178 # TODO(GYP): content_icudata 179 # TODO(GYP): content_icudata
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698