moz.build (966B)
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 "CryptoBuffer.h", 12 "CryptoKey.h", 13 "KeyAlgorithmProxy.h", 14 "WebCryptoCommon.h", 15 "WebCryptoTask.h", 16 ] 17 18 UNIFIED_SOURCES += [ 19 "CryptoBuffer.cpp", 20 "CryptoKey.cpp", 21 "KeyAlgorithmProxy.cpp", 22 "WebCryptoTask.cpp", 23 ] 24 25 include("/ipc/chromium/chromium-config.mozbuild") 26 27 FINAL_LIBRARY = "xul" 28 29 LOCAL_INCLUDES += [ 30 "/security/manager/ssl", 31 "/xpcom/build", 32 ] 33 34 MOCHITEST_MANIFESTS += ["test/mochitest.toml"] 35 BROWSER_CHROME_MANIFESTS += ["test/browser/browser.toml"] 36 37 # Add libFuzzer configuration directives 38 include("/tools/fuzzing/libfuzzer-config.mozbuild")