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

Unified Diff: android_webview/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/browser/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/BUILD.gn
diff --git a/android_webview/BUILD.gn b/android_webview/BUILD.gn
index c13f78307af0715e2410ef99416d01bd3d836bd0..3857b364fa4a2464b7bca7f066a48cdeb1a80d76 100644
--- a/android_webview/BUILD.gn
+++ b/android_webview/BUILD.gn
@@ -630,6 +630,13 @@ source_set("common") {
]
}
+ if (enable_spellcheck) {
+ deps += [
+ "//components/spellcheck/browser",
+ "//components/spellcheck/renderer",
+ ]
+ }
+
configs += [ "//v8:external_startup_data" ]
}
@@ -719,6 +726,10 @@ android_library("android_webview_java") {
deps += [ "//components/policy/android:policy_java" ]
}
+ if (enable_spellcheck) {
+ deps += [ "//components/spellcheck/browser/android:java" ]
+ }
+
srcjar_deps = [ "//android_webview/native:aw_permission_request_resource" ]
}
« no previous file with comments | « no previous file | android_webview/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698