зеркало из https://github.com/mozilla/gecko-dev.git
237 строки
6.2 KiB
Python
237 строки
6.2 KiB
Python
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# vim: set filetype=python:
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = ("Core", "Networking: HTTP")
|
|
|
|
XPIDL_SOURCES += [
|
|
"nsIBackgroundChannelRegistrar.idl",
|
|
"nsIBinaryHttp.idl",
|
|
"nsIEarlyHintObserver.idl",
|
|
"nsIHttpActivityObserver.idl",
|
|
"nsIHttpAuthenticableChannel.idl",
|
|
"nsIHttpAuthenticator.idl",
|
|
"nsIHttpAuthManager.idl",
|
|
"nsIHttpChannel.idl",
|
|
"nsIHttpChannelAuthProvider.idl",
|
|
"nsIHttpChannelChild.idl",
|
|
"nsIHttpChannelInternal.idl",
|
|
"nsIHttpHeaderVisitor.idl",
|
|
"nsIHttpProtocolHandler.idl",
|
|
"nsINetworkErrorLogging.idl",
|
|
"nsIObliviousHttp.idl",
|
|
"nsIObliviousHttpChannel.idl",
|
|
"nsIRaceCacheWithNetwork.idl",
|
|
"nsIReplacedHttpResponse.idl",
|
|
"nsITlsHandshakeListener.idl",
|
|
"nsIWellKnownOpportunisticUtils.idl",
|
|
]
|
|
|
|
XPIDL_MODULE = "necko_http"
|
|
|
|
EXPORTS += [
|
|
"nsCORSListenerProxy.h",
|
|
"nsHttp.h",
|
|
"nsHttpAtomList.h",
|
|
"nsHttpHeaderArray.h",
|
|
"nsHttpRequestHead.h",
|
|
"nsHttpResponseHead.h",
|
|
]
|
|
|
|
EXPORTS.mozilla.net += [
|
|
"AltDataOutputStreamChild.h",
|
|
"AltDataOutputStreamParent.h",
|
|
"AltServiceChild.h",
|
|
"AltServiceParent.h",
|
|
"AltSvcTransactionChild.h",
|
|
"AltSvcTransactionParent.h",
|
|
"BackgroundChannelRegistrar.h",
|
|
"BackgroundDataBridgeChild.h",
|
|
"BackgroundDataBridgeParent.h",
|
|
"ClassOfService.h",
|
|
"EarlyHintPreloader.h",
|
|
"EarlyHintRegistrar.h",
|
|
"EarlyHintsService.h",
|
|
"HttpAuthUtils.h",
|
|
"HttpBackgroundChannelChild.h",
|
|
"HttpBackgroundChannelParent.h",
|
|
"HttpBaseChannel.h",
|
|
"HttpChannelChild.h",
|
|
"HttpChannelParent.h",
|
|
"HttpConnectionMgrChild.h",
|
|
"HttpConnectionMgrParent.h",
|
|
"HttpConnectionMgrShell.h",
|
|
"HttpInfo.h",
|
|
"HttpTransactionChild.h",
|
|
"HttpTransactionParent.h",
|
|
"HttpTransactionShell.h",
|
|
"nsAHttpTransaction.h",
|
|
"nsServerTiming.h",
|
|
"NullHttpChannel.h",
|
|
"NullHttpTransaction.h",
|
|
"OpaqueResponseUtils.h",
|
|
"ParentChannelListener.h",
|
|
"PHttpChannelParams.h",
|
|
"PSpdyPush.h",
|
|
"ReplacedHttpResponse.h",
|
|
"SpeculativeTransaction.h",
|
|
"TimingStruct.h",
|
|
]
|
|
|
|
SOURCES += [
|
|
"nsHttpChannelAuthProvider.cpp", # redefines GetAuthType
|
|
]
|
|
|
|
UNIFIED_SOURCES += [
|
|
"AltDataOutputStreamChild.cpp",
|
|
"AltDataOutputStreamParent.cpp",
|
|
"AlternateServices.cpp",
|
|
"AltServiceChild.cpp",
|
|
"AltServiceParent.cpp",
|
|
"AltSvcTransactionChild.cpp",
|
|
"AltSvcTransactionParent.cpp",
|
|
"ASpdySession.cpp",
|
|
"BackgroundChannelRegistrar.cpp",
|
|
"BackgroundDataBridgeChild.cpp",
|
|
"BackgroundDataBridgeParent.cpp",
|
|
"BinaryHttpRequest.cpp",
|
|
"CacheControlParser.cpp",
|
|
"CachePushChecker.cpp",
|
|
"ConnectionDiagnostics.cpp",
|
|
"ConnectionEntry.cpp",
|
|
"ConnectionHandle.cpp",
|
|
"DnsAndConnectSocket.cpp",
|
|
"EarlyHintPreconnect.cpp",
|
|
"EarlyHintPreloader.cpp",
|
|
"EarlyHintRegistrar.cpp",
|
|
"EarlyHintsService.cpp",
|
|
"Http2Compression.cpp",
|
|
"Http2Push.cpp",
|
|
"Http2Session.cpp",
|
|
"Http2Stream.cpp",
|
|
"Http2StreamBase.cpp",
|
|
"Http2StreamTunnel.cpp",
|
|
"Http3Session.cpp",
|
|
"Http3Stream.cpp",
|
|
"Http3WebTransportSession.cpp",
|
|
"Http3WebTransportStream.cpp",
|
|
"HttpAuthUtils.cpp",
|
|
"HttpBackgroundChannelChild.cpp",
|
|
"HttpBackgroundChannelParent.cpp",
|
|
"HttpBaseChannel.cpp",
|
|
"HttpChannelChild.cpp",
|
|
"HttpChannelParent.cpp",
|
|
"HttpConnectionBase.cpp",
|
|
"HttpConnectionMgrChild.cpp",
|
|
"HttpConnectionMgrParent.cpp",
|
|
"HttpConnectionUDP.cpp",
|
|
"HttpInfo.cpp",
|
|
"HTTPSRecordResolver.cpp",
|
|
"HttpTrafficAnalyzer.cpp",
|
|
"HttpTransactionChild.cpp",
|
|
"HttpTransactionParent.cpp",
|
|
"InterceptedHttpChannel.cpp",
|
|
"MockHttpAuth.cpp",
|
|
"NetworkMarker.cpp",
|
|
"nsCORSListenerProxy.cpp",
|
|
"nsHttp.cpp",
|
|
"nsHttpActivityDistributor.cpp",
|
|
"nsHttpAuthCache.cpp",
|
|
"nsHttpAuthManager.cpp",
|
|
"nsHttpBasicAuth.cpp",
|
|
"nsHttpChannel.cpp",
|
|
"nsHttpChunkedDecoder.cpp",
|
|
"nsHttpConnection.cpp",
|
|
"nsHttpConnectionInfo.cpp",
|
|
"nsHttpConnectionMgr.cpp",
|
|
"nsHttpDigestAuth.cpp",
|
|
"nsHttpHeaderArray.cpp",
|
|
"nsHttpNTLMAuth.cpp",
|
|
"nsHttpRequestHead.cpp",
|
|
"nsHttpResponseHead.cpp",
|
|
"nsHttpTransaction.cpp",
|
|
"nsServerTiming.cpp",
|
|
"NullHttpChannel.cpp",
|
|
"NullHttpTransaction.cpp",
|
|
"ObliviousHttpChannel.cpp",
|
|
"ObliviousHttpService.cpp",
|
|
"OpaqueResponseUtils.cpp",
|
|
"ParentChannelListener.cpp",
|
|
"PendingTransactionInfo.cpp",
|
|
"PendingTransactionQueue.cpp",
|
|
"QuicSocketControl.cpp",
|
|
"ReplacedHttpResponse.cpp",
|
|
"SpeculativeTransaction.cpp",
|
|
"TlsHandshaker.cpp",
|
|
"TLSTransportLayer.cpp",
|
|
"TRRServiceChannel.cpp",
|
|
"WebTransportCertificateVerifier.cpp",
|
|
]
|
|
|
|
if CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
|
|
UNIFIED_SOURCES += [
|
|
"HttpWinUtils.cpp",
|
|
]
|
|
|
|
if CONFIG["TARGET_OS"] == "OSX":
|
|
UNIFIED_SOURCES += [
|
|
"MicrosoftEntraSSOUtils.mm",
|
|
]
|
|
OS_LIBS += [
|
|
"-framework AuthenticationServices",
|
|
]
|
|
|
|
# These files cannot be built in unified mode because of OS X headers.
|
|
SOURCES += [
|
|
"nsHttpHandler.cpp",
|
|
]
|
|
|
|
IPDL_SOURCES += [
|
|
"HttpChannelParams.ipdlh",
|
|
"PAltDataOutputStream.ipdl",
|
|
"PAltService.ipdl",
|
|
"PAltSvcTransaction.ipdl",
|
|
"PBackgroundDataBridge.ipdl",
|
|
"PHttpBackgroundChannel.ipdl",
|
|
"PHttpChannel.ipdl",
|
|
"PHttpConnectionMgr.ipdl",
|
|
"PHttpTransaction.ipdl",
|
|
]
|
|
|
|
include("/ipc/chromium/chromium-config.mozbuild")
|
|
|
|
FINAL_LIBRARY = "xul"
|
|
|
|
LOCAL_INCLUDES += [
|
|
"/dom/base",
|
|
"/netwerk/base",
|
|
"/netwerk/cookie",
|
|
"/netwerk/dns",
|
|
"/netwerk/ipc",
|
|
"/netwerk/socket/neqo_glue",
|
|
"/netwerk/url-classifier",
|
|
]
|
|
|
|
DEFINES["MOZ_APP_UA_NAME"] = f'"{CONFIG["MOZ_APP_UA_NAME"]}"'
|
|
|
|
if CONFIG["MOZ_AUTH_EXTENSION"]:
|
|
LOCAL_INCLUDES += [
|
|
"/extensions/auth",
|
|
]
|
|
|
|
EXTRA_JS_MODULES += [
|
|
"HPKEConfigManager.sys.mjs",
|
|
"NetworkErrorLogging.sys.mjs",
|
|
"ObliviousHTTP.sys.mjs",
|
|
"WellKnownOpportunisticUtils.sys.mjs",
|
|
]
|
|
|
|
XPCOM_MANIFESTS += [
|
|
"components.conf",
|
|
]
|
|
|
|
include("/tools/fuzzing/libfuzzer-config.mozbuild")
|