Bug 1855360 - Fix the skip-if syntax. a=bustage-fix
[gecko.git] / parser / htmlparser / moz.build
blobc5b1cc378da4023016ede97127c9f9eb2df781b8
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/.
7 with Files("**"):
8     BUG_COMPONENT = ("Core", "XML")
10 MOCHITEST_MANIFESTS += ["tests/mochitest/mochitest.toml"]
11 BROWSER_CHROME_MANIFESTS += ["tests/mochitest/browser.toml"]
13 XPIDL_SOURCES += [
14     "nsIExpatSink.idl",
17 XPIDL_MODULE = "htmlparser"
19 EXPORTS += [
20     "nsElementTable.h",
21     "nsHTMLTagList.h",
22     "nsHTMLTags.h",
23     "nsIContentSink.h",
24     "nsIDTD.h",
25     "nsIFragmentContentSink.h",
26     "nsIHTMLContentSink.h",
27     "nsIParser.h",
28     "nsParserBase.h",
29     "nsParserConstants.h",
30     "nsRLBoxExpatDriver.h",
31     "nsScannerString.h",
34 UNIFIED_SOURCES += [
35     "CNavDTD.cpp",
36     "CParserContext.cpp",
37     "nsElementTable.cpp",
38     "nsExpatDriver.cpp",
39     "nsHTMLTags.cpp",
40     "nsParser.cpp",
41     "nsParserMsgUtils.cpp",
42     "nsScanner.cpp",
43     "nsScannerString.cpp",
46 include("/ipc/chromium/chromium-config.mozbuild")
48 FINAL_LIBRARY = "xul"
50 LOCAL_INCLUDES += [
51     "!/security/rlbox",