2016-07-14 10:16:42 -06:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 12:47:20 -08: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 08:57:59 +09:00
|
|
|
DIRS += [
|
2013-02-25 12:47:20 -08:00
|
|
|
"libeditor",
|
2018-03-02 12:55:26 +09:00
|
|
|
"spellchecker",
|
2013-02-25 12:47:20 -08:00
|
|
|
"txmgr",
|
|
|
|
"composer",
|
|
|
|
]
|
2013-03-19 11:47:00 -07:00
|
|
|
|
2014-07-16 12:02:34 -07: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 14:17:26 +09:00
|
|
|
TESTING_JS_MODULES += [
|
2013-07-01 11:34:30 -04:00
|
|
|
"AsyncSpellCheckTestHelper.jsm",
|
|
|
|
]
|
2017-01-13 08:40:24 -05:00
|
|
|
|
2019-11-08 12:17:57 +00:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Core", "DOM: Editor")
|
2021-01-19 06:07:27 +00:00
|
|
|
|
|
|
|
SPHINX_TREES["/editor"] = "docs"
|
|
|
|
|
|
|
|
with Files("docs/**"):
|
|
|
|
SCHEDULES.exclusive = ["docs"]
|