gecko-dev/editor/spellchecker/moz.build
Makoto Kato b682338978 Bug 1504913 - Part 2. Get rid of nsISpellChecker. r=masayuki
No one uses nsISpellChecker, so let's get rid of nsISpellChecker.

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

--HG--
extra : rebase_source : 1caeba2edf7677258c0406f087eaa41e12cbb8a8
extra : histedit_source : 6a90572e8ecddf0f13fbe5b1abf1bedf1c84a4d9
2018-11-06 12:32:04 +09:00

28 lines
673 B
Python

# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
# vim: set filetype=python:
# This Source Code Form is subject to the terms of the Mozilla Public
# 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/.
MOCHITEST_MANIFESTS += ['tests/mochitest.ini']
XPIDL_SOURCES += [
'nsIInlineSpellChecker.idl',
]
XPIDL_MODULE = 'txtsvc'
EXPORTS.mozilla += [
'EditorSpellCheck.h',
'TextServicesDocument.h',
]
UNIFIED_SOURCES += [
'EditorSpellCheck.cpp',
'nsComposeTxtSrvFilter.cpp',
'nsFilteredContentIterator.cpp',
'TextServicesDocument.cpp',
]
FINAL_LIBRARY = 'xul'