Bug 1619883 - Don't include spellchecker dictionary in omni.ja of GeckoView. r=geckoview-reviewers,agi

Actually, we don't turn on hunspell spellchecker for Android, but, omni.ja seems have hunspell's dictionary. Let's remove it from package.

Differential Revision: https://phabricator.services.mozilla.com/D65477

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Makoto Kato 2020-03-23 15:46:06 +00:00
parent 8526066f54
commit 8e9a1c655f

View File

@ -4,7 +4,11 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
DIRS += ['idl', 'locales', 'hunspell', 'src']
DIRS += ['idl', 'hunspell', 'src']
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
# GeckoView disables hunspell spellchecker.
DIRS += ['locales']
MOCHITEST_CHROME_MANIFESTS += ['tests/chrome/chrome.ini']
MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini']