| 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" ]
|
| }
|
|
|
|
|