Bug 1891710: part 2) Enable <Element-outerHTML.html> WPT for Trusted Types. r=smaug
[gecko.git] / caps / moz.build
blob87adef8a7e0c1d88b97ed0670b43f22cc352203f
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 MOCHITEST_MANIFESTS += ["tests/mochitest/mochitest.toml"]
8 MOCHITEST_CHROME_MANIFESTS += ["tests/mochitest/chrome.toml"]
9 BROWSER_CHROME_MANIFESTS += ["tests/mochitest/browser.toml"]
10 XPCSHELL_TESTS_MANIFESTS += ["tests/unit/xpcshell.toml"]
12 # Hack to make this file available as a resource:// URI.
13 TESTING_JS_MODULES += [
14     "tests/mochitest/resource_test_file.html",
17 XPIDL_SOURCES += [
18     "nsIAddonPolicyService.idl",
19     "nsIDomainPolicy.idl",
20     "nsIPrincipal.idl",
21     "nsIScriptSecurityManager.idl",
24 XPIDL_MODULE = "caps"
26 EXPORTS += [
27     "nsJSPrincipals.h",
28     "nsScriptSecurityManager.h",
31 EXPORTS.mozilla = [
32     "BasePrincipal.h",
33     "ContentPrincipal.h",
34     "ExpandedPrincipal.h",
35     "NullPrincipal.h",
36     "OriginAttributes.h",
37     "OriginAttributesHashKey.h",
38     "PrincipalHashKey.h",
39     "SystemPrincipal.h",
42 SOURCES += [
43     # Compile this separately since nsExceptionHandler.h conflicts
44     # with something from NullPrincipal.cpp.
45     "BasePrincipal.cpp",
48 UNIFIED_SOURCES += [
49     "ContentPrincipal.cpp",
50     "DomainPolicy.cpp",
51     "ExpandedPrincipal.cpp",
52     "nsJSPrincipals.cpp",
53     "nsScriptSecurityManager.cpp",
54     "NullPrincipal.cpp",
55     "OriginAttributes.cpp",
56     "SystemPrincipal.cpp",
59 USE_LIBS += [
60     "jsoncpp",
63 LOCAL_INCLUDES += [
64     "/docshell/base",
65     "/dom/base",
66     "/js/xpconnect/src",
67     "/netwerk/base",
68     "/netwerk/cookie",
69     "/toolkit/components/jsoncpp/include",
72 if CONFIG["ENABLE_TESTS"]:
73     DIRS += ["tests/gtest"]
75 include("/ipc/chromium/chromium-config.mozbuild")
77 FINAL_LIBRARY = "xul"
79 with Files("**"):
80     BUG_COMPONENT = ("Core", "Security: CAPS")