moz.build (897B)
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: Networking") 9 10 EXPORTS.mozilla.dom += [ 11 "URL.h", 12 "URLSearchParams.h", 13 ] 14 15 UNIFIED_SOURCES += [ 16 "URL.cpp", 17 "URLMainThread.cpp", 18 "URLSearchParams.cpp", 19 "URLWorker.cpp", 20 ] 21 22 LOCAL_INCLUDES += [ 23 "/netwerk/base", 24 ] 25 26 MOCHITEST_MANIFESTS += ["tests/mochitest.toml"] 27 MOCHITEST_CHROME_MANIFESTS += ["tests/chrome.toml"] 28 BROWSER_CHROME_MANIFESTS += ["tests/browser.toml"] 29 30 include("/ipc/chromium/chromium-config.mozbuild") 31 32 FINAL_LIBRARY = "xul" 33 34 # Add libFuzzer configuration directives 35 include("/tools/fuzzing/libfuzzer-config.mozbuild")