summaryrefslogtreecommitdiffstats
path: root/src/core/configure/BUILD.root.gn.in
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/configure/BUILD.root.gn.in')
-rw-r--r--src/core/configure/BUILD.root.gn.in16
1 files changed, 15 insertions, 1 deletions
diff --git a/src/core/configure/BUILD.root.gn.in b/src/core/configure/BUILD.root.gn.in
index 28882050f..b0e52511c 100644
--- a/src/core/configure/BUILD.root.gn.in
+++ b/src/core/configure/BUILD.root.gn.in
@@ -258,7 +258,8 @@ source_set("qtwebengine_sources") {
if (enable_spellcheck) {
deps += [
":qtwebengine_spellcheck_sources",
- "//chrome/tools/convert_dict",
+ "//chrome/tools/convert_dict:lib",
+ "//third_party/hunspell",
]
}
if (enable_plugins) {
@@ -530,3 +531,16 @@ if (enable_extensions) {
]
}
}
+
+if (enable_spellcheck) {
+ shared_library("convert_dict") {
+ cmake_config = "@GN_CONFIG@"
+ configs += [ "//build/config/compiler:wexit_time_destructors" ]
+ deps = [
+ "//chrome/tools/convert_dict:lib",
+ "//base",
+ "//base:i18n",
+ "//third_party/hunspell",
+ ]
+ }
+}