2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:20 +04:00
|
|
|
# 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/.
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2013-02-26 00:47:20 +04:00
|
|
|
'txtsvc',
|
|
|
|
'libeditor',
|
|
|
|
'txmgr',
|
|
|
|
'composer',
|
|
|
|
]
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2014-07-16 23:02:34 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIContentFilter.idl',
|
|
|
|
'nsIDocumentStateListener.idl',
|
|
|
|
'nsIEditActionListener.idl',
|
|
|
|
'nsIEditor.idl',
|
|
|
|
'nsIEditorIMESupport.idl',
|
|
|
|
'nsIEditorMailSupport.idl',
|
|
|
|
'nsIEditorObserver.idl',
|
|
|
|
'nsIEditorSpellCheck.idl',
|
|
|
|
'nsIEditorStyleSheets.idl',
|
2016-05-20 02:47:44 +03:00
|
|
|
'nsIEditorUtils.idl',
|
2014-07-16 23:02:34 +04:00
|
|
|
'nsIHTMLAbsPosEditor.idl',
|
|
|
|
'nsIHTMLEditor.idl',
|
|
|
|
'nsIHTMLInlineTableEditor.idl',
|
|
|
|
'nsIHTMLObjectResizeListener.idl',
|
|
|
|
'nsIHTMLObjectResizer.idl',
|
|
|
|
'nsIPlaintextEditor.idl',
|
|
|
|
'nsITableEditor.idl',
|
|
|
|
'nsIURIRefObject.idl',
|
|
|
|
'nsPIEditorTransaction.idl',
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = 'editor'
|
|
|
|
|
|
|
|
EXPORTS += [
|
|
|
|
'nsEditorCID.h',
|
|
|
|
]
|
|
|
|
|
2013-07-01 19:34:30 +04:00
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'AsyncSpellCheckTestHelper.jsm',
|
|
|
|
]
|