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
|
|
|
"libeditor",
|
2018-03-02 06:55:26 +03:00
|
|
|
"spellchecker",
|
2013-02-26 00:47:20 +04:00
|
|
|
"txmgr",
|
|
|
|
"composer",
|
|
|
|
]
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2014-07-16 23:02:34 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
"nsIDocumentStateListener.idl",
|
|
|
|
"nsIEditActionListener.idl",
|
|
|
|
"nsIEditor.idl",
|
|
|
|
"nsIEditorMailSupport.idl",
|
|
|
|
"nsIEditorObserver.idl",
|
|
|
|
"nsIEditorSpellCheck.idl",
|
|
|
|
"nsIHTMLAbsPosEditor.idl",
|
|
|
|
"nsIHTMLEditor.idl",
|
|
|
|
"nsIHTMLInlineTableEditor.idl",
|
|
|
|
"nsIHTMLObjectResizer.idl",
|
|
|
|
"nsITableEditor.idl",
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = "editor"
|
|
|
|
|
2017-03-31 08:17:26 +03:00
|
|
|
TESTING_JS_MODULES += [
|
2013-07-01 19:34:30 +04:00
|
|
|
"AsyncSpellCheckTestHelper.jsm",
|
|
|
|
]
|
2017-01-13 16:40:24 +03:00
|
|
|
|
2019-11-08 15:17:57 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM: Editor")
|
2021-01-19 09:07:27 +03:00
|
|
|
|
|
|
|
SPHINX_TREES["/editor"] = "docs"
|
|
|
|
|
|
|
|
with Files("docs/**"):
|
|
|
|
SCHEDULES.exclusive = ["docs"]
|