moz.build (990B)
1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- 2 # vim: set filetype=python: 3 # This Source Code Form is subject to the terms of the Mozilla Public 4 # License, v. 2.0. If a copy of the MPL was not distributed with this 5 # file, You can obtain one at http://mozilla.org/MPL/2.0/. 6 7 DIRS += [ 8 "libeditor", 9 "spellchecker", 10 "txmgr", 11 "composer", 12 ] 13 14 XPIDL_SOURCES += [ 15 "nsIDocumentStateListener.idl", 16 "nsIEditActionListener.idl", 17 "nsIEditor.idl", 18 "nsIEditorMailSupport.idl", 19 "nsIEditorSpellCheck.idl", 20 "nsIHTMLAbsPosEditor.idl", 21 "nsIHTMLEditor.idl", 22 "nsIHTMLInlineTableEditor.idl", 23 "nsIHTMLObjectResizer.idl", 24 "nsITableEditor.idl", 25 ] 26 27 XPIDL_MODULE = "editor" 28 29 TESTING_JS_MODULES += [ 30 "AsyncSpellCheckTestHelper.sys.mjs", 31 ] 32 33 with Files("**"): 34 BUG_COMPONENT = ("Core", "DOM: Editor") 35 36 SPHINX_TREES["/editor"] = "docs" 37 38 with Files("docs/**"): 39 SCHEDULES.exclusive = ["docs"] 40 41 CXXFLAGS += CONFIG["MOZ_TRIVIAL_AUTO_VAR_INIT"]