moz.build (836B)
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 with Files("**"): 8 BUG_COMPONENT = ("Core", "DOM: Security") 9 10 EXPORTS.mozilla.dom += [ 11 "TrustedHTML.h", 12 "TrustedScript.h", 13 "TrustedScriptURL.h", 14 "TrustedTypePolicy.h", 15 "TrustedTypePolicyFactory.h", 16 "TrustedTypesConstants.h", 17 "TrustedTypeUtils.h", 18 ] 19 20 UNIFIED_SOURCES += [ 21 "TrustedHTML.cpp", 22 "TrustedScript.cpp", 23 "TrustedScriptURL.cpp", 24 "TrustedTypePolicy.cpp", 25 "TrustedTypePolicyFactory.cpp", 26 "TrustedTypeUtils.cpp", 27 ] 28 29 include("/ipc/chromium/chromium-config.mozbuild") 30 31 FINAL_LIBRARY = "xul"