diff --git a/configure.json b/configure.json index f9fa17a8d988cebf70a77812a4e301cedebca7f1..63abd1dba45dd5feada3cc397bab964c6f3d7402 100644 --- a/configure.json +++ b/configure.json @@ -3,7 +3,8 @@ "commandline": { "options": { - "proprietary-codecs": "boolean" + "proprietary-codecs": "boolean", + "spellchecker": "boolean" } }, @@ -13,6 +14,11 @@ "autoDetect": false, "purpose": "Enables the use of proprietary codecs such as h.264/h.265 and MP3", "output": [ "privateFeature" ] + }, + "spellchecker": { + "label": "Spellchecker", + "purpose": "Enables the use of Chromium's spellchecker", + "output": [ "privateFeature" ] } }, @@ -20,7 +26,8 @@ { "section": "Qt WebEngine", "entries": [ - "proprietary-codecs" + "proprietary-codecs", + "spellchecker" ] } ] diff --git a/examples/examples.pro b/examples/examples.pro index 5a09213e50e74d02bfef2fa8e66acd20179878bf..1a0f3a2638e80550f309804256278086a0bc889f 100644 --- a/examples/examples.pro +++ b/examples/examples.pro @@ -16,7 +16,7 @@ qtHaveModule(webenginewidgets) { webenginewidgets/markdowneditor \ webenginewidgets/simplebrowser - !contains(WEBENGINE_CONFIG, no_spellcheck):!cross_compile { + contains(WEBENGINE_CONFIG, use_spellchecker):!cross_compile { !contains(WEBENGINE_CONFIG, use_native_spellchecker) { SUBDIRS += webenginewidgets/spellchecker } else { diff --git a/src/core/gyp_run.pro b/src/core/gyp_run.pro index 2337377514845fef3cceb79307b2452f82db4a0b..1850447e764afaa924bc1b9cf7acc44548d7a9d8 100644 --- a/src/core/gyp_run.pro +++ b/src/core/gyp_run.pro @@ -120,7 +120,7 @@ contains(WEBENGINE_CONFIG, use_appstore_compliant_code): GYP_CONFIG += appstore_ # but the latter are necessary for useful debug binaries. contains(WEBENGINE_CONFIG, reduce_binary_size): GYP_CONFIG += release_optimize=s debug_optimize=s release_unwind_tables=0 -contains(WEBENGINE_CONFIG, no_spellcheck): { +!contains(WEBENGINE_CONFIG, use_spellchecker): { GYP_CONFIG += enable_spellcheck=0 macos: GYP_CONFIG += use_browser_spellchecker=0 } else { diff --git a/src/src.pro b/src/src.pro index 495263846b9091a3aaf17bdf9cb09af8773813ec..9b5373181dd3f73dee25d6464852aece376ac8ff 100644 --- a/src/src.pro +++ b/src/src.pro @@ -14,7 +14,7 @@ SUBDIRS += core \ plugins # allow only desktop builds of qwebengine_convert_dict -!contains(WEBENGINE_CONFIG, no_spellcheck):!contains(WEBENGINE_CONFIG, use_native_spellchecker):!cross_compile { +contains(WEBENGINE_CONFIG, use_spellchecker):!contains(WEBENGINE_CONFIG, use_native_spellchecker):!cross_compile { SUBDIRS += qwebengine_convert_dict qwebengine_convert_dict.subdir = tools/qwebengine_convert_dict qwebengine_convert_dict.depends = core diff --git a/src/webengine/webengine.pro b/src/webengine/webengine.pro index 6b2285c858c8f69e49a588771d525c99d89c0c42..99b9c4e6f5ed09bb5bb1061345a8cc69c8beba90 100644 --- a/src/webengine/webengine.pro +++ b/src/webengine/webengine.pro @@ -61,7 +61,7 @@ isQMLTestSupportApiEnabled() { DEFINES += ENABLE_QML_TESTSUPPORT_API } -!contains(WEBENGINE_CONFIG, no_spellcheck) { +contains(WEBENGINE_CONFIG, use_spellchecker) { DEFINES += ENABLE_SPELLCHECK } diff --git a/src/webenginewidgets/webenginewidgets.pro b/src/webenginewidgets/webenginewidgets.pro index abd487e5fc1ed5610c3c3cdce30069b824798893..64e4754228a3095e66ac0bbc1a37f56438810292 100644 --- a/src/webenginewidgets/webenginewidgets.pro +++ b/src/webenginewidgets/webenginewidgets.pro @@ -48,7 +48,7 @@ HEADERS = \ DEFINES += QT_UI_DELEGATES } -!contains(WEBENGINE_CONFIG, no_spellcheck) { +contains(WEBENGINE_CONFIG, use_spellchecker) { DEFINES += ENABLE_SPELLCHECK } diff --git a/tests/auto/widgets/widgets.pro b/tests/auto/widgets/widgets.pro index 799eaf1c26ed2fb9516d7f1b099ce8e03dcb0575..c7096b6b69f941345aad778035228f70b7aa1b61 100644 --- a/tests/auto/widgets/widgets.pro +++ b/tests/auto/widgets/widgets.pro @@ -13,7 +13,7 @@ SUBDIRS += \ qwebenginesettings \ qwebengineview -!contains(WEBENGINE_CONFIG, no_spellcheck):!cross_compile { +!contains(WEBENGINE_CONFIG, use_spellchecker):!cross_compile { !contains(WEBENGINE_CONFIG, use_native_spellchecker) { SUBDIRS += qwebenginespellcheck } else { diff --git a/tools/qmake/mkspecs/features/configure.prf b/tools/qmake/mkspecs/features/configure.prf index 105e3bc3c0be854a6a10e853937150362eb19399..e2bb44f20425f3d84be480a2ef11fb05ce157b0d 100644 --- a/tools/qmake/mkspecs/features/configure.prf +++ b/tools/qmake/mkspecs/features/configure.prf @@ -79,6 +79,7 @@ defineTest(runConfigure) { include($$QTWEBENGINE_OUT_ROOT/qtwebengine-config.pri) QT_FOR_CONFIG += webengine-private qtConfig(proprietary-codecs): WEBENGINE_CONFIG += use_proprietary_codecs + qtConfig(spellchecker): WEBENGINE_CONFIG += use_spellchecker } isEmpty(skipBuildReason): {