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

Side by Side Diff: android_webview/native/BUILD.gn

Issue 2264633002: [Android] Add spellchecking support in android_webview. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 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
« no previous file with comments | « android_webview/browser/aw_content_browser_client.cc ('k') | android_webview/native/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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 source_set("native") { 8 source_set("native") {
9 deps = [ 9 deps = [
10 ":native_jni", 10 ":native_jni",
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 "permission/simple_permission_request.h", 111 "permission/simple_permission_request.h",
112 "state_serializer.cc", 112 "state_serializer.cc",
113 "state_serializer.h", 113 "state_serializer.h",
114 "token_binding_manager_bridge.cc", 114 "token_binding_manager_bridge.cc",
115 "token_binding_manager_bridge.h", 115 "token_binding_manager_bridge.h",
116 ] 116 ]
117 if (enable_video_hole) { 117 if (enable_video_hole) {
118 deps += [ "//components/external_video_surface:external_video_surface" ] 118 deps += [ "//components/external_video_surface:external_video_surface" ]
119 } 119 }
120 120
121 if (enable_spellcheck) {
122 deps += [ "//components/spellcheck/browser:browser" ]
123 }
124
121 libs = [ "jnigraphics" ] 125 libs = [ "jnigraphics" ]
122 } 126 }
123 127
124 generate_jni("native_jni") { 128 generate_jni("native_jni") {
125 sources = [ 129 sources = [
126 "../java/src/org/chromium/android_webview/AndroidProtocolHandler.java", 130 "../java/src/org/chromium/android_webview/AndroidProtocolHandler.java",
127 "../java/src/org/chromium/android_webview/AwAutofillClient.java", 131 "../java/src/org/chromium/android_webview/AwAutofillClient.java",
128 "../java/src/org/chromium/android_webview/AwContents.java", 132 "../java/src/org/chromium/android_webview/AwContents.java",
129 "../java/src/org/chromium/android_webview/AwContentsBackgroundThreadClient.j ava", 133 "../java/src/org/chromium/android_webview/AwContentsBackgroundThreadClient.j ava",
130 "../java/src/org/chromium/android_webview/AwContentsClientBridge.java", 134 "../java/src/org/chromium/android_webview/AwContentsClientBridge.java",
(...skipping 30 matching lines...) Expand all
161 generate_jar_jni("cancellation_signal_android_jar_jni_headers") { 165 generate_jar_jni("cancellation_signal_android_jar_jni_headers") {
162 classes = [ "android/os/CancellationSignal.class" ] 166 classes = [ "android/os/CancellationSignal.class" ]
163 jni_package = "android_webview" 167 jni_package = "android_webview"
164 } 168 }
165 169
166 java_cpp_enum("aw_permission_request_resource") { 170 java_cpp_enum("aw_permission_request_resource") {
167 sources = [ 171 sources = [
168 "permission/aw_permission_request.h", 172 "permission/aw_permission_request.h",
169 ] 173 ]
170 } 174 }
OLDNEW
« no previous file with comments | « android_webview/browser/aw_content_browser_client.cc ('k') | android_webview/native/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698