mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-28 03:17:31 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
121
netwerk/protocol/http/moz.build
Normal file
121
netwerk/protocol/http/moz.build
Normal file
|
|
@ -0,0 +1,121 @@
|
|||
# -*- 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/.
|
||||
|
||||
XPIDL_SOURCES += [
|
||||
'nsIHstsPrimingCallback.idl',
|
||||
'nsIHttpActivityObserver.idl',
|
||||
'nsIHttpAuthenticableChannel.idl',
|
||||
'nsIHttpAuthenticator.idl',
|
||||
'nsIHttpAuthManager.idl',
|
||||
'nsIHttpChannel.idl',
|
||||
'nsIHttpChannelAuthProvider.idl',
|
||||
'nsIHttpChannelChild.idl',
|
||||
'nsIHttpChannelInternal.idl',
|
||||
'nsIHttpEventSink.idl',
|
||||
'nsIHttpHeaderVisitor.idl',
|
||||
'nsIHttpProtocolHandler.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',
|
||||
'HttpBaseChannel.h',
|
||||
'HttpChannelChild.h',
|
||||
'HttpChannelParent.h',
|
||||
'HttpInfo.h',
|
||||
'NullHttpChannel.h',
|
||||
'PHttpChannelParams.h',
|
||||
'PSpdyPush.h',
|
||||
'TimingStruct.h',
|
||||
]
|
||||
|
||||
# ASpdySession.cpp and nsHttpAuthCache cannot be built in unified mode because
|
||||
# they use plarena.h.
|
||||
SOURCES += [
|
||||
'AlternateServices.cpp',
|
||||
'ASpdySession.cpp',
|
||||
'nsHttpAuthCache.cpp',
|
||||
'nsHttpChannelAuthProvider.cpp', # redefines GetAuthType
|
||||
]
|
||||
|
||||
UNIFIED_SOURCES += [
|
||||
'AltDataOutputStreamChild.cpp',
|
||||
'AltDataOutputStreamParent.cpp',
|
||||
'CacheControlParser.cpp',
|
||||
'ConnectionDiagnostics.cpp',
|
||||
'HSTSPrimerListener.cpp',
|
||||
'Http2Compression.cpp',
|
||||
'Http2Push.cpp',
|
||||
'Http2Session.cpp',
|
||||
'Http2Stream.cpp',
|
||||
'HttpBaseChannel.cpp',
|
||||
'HttpChannelChild.cpp',
|
||||
'HttpChannelParent.cpp',
|
||||
'HttpChannelParentListener.cpp',
|
||||
'HttpInfo.cpp',
|
||||
'InterceptedChannel.cpp',
|
||||
'nsCORSListenerProxy.cpp',
|
||||
'nsHttp.cpp',
|
||||
'nsHttpActivityDistributor.cpp',
|
||||
'nsHttpAuthManager.cpp',
|
||||
'nsHttpBasicAuth.cpp',
|
||||
'nsHttpChannel.cpp',
|
||||
'nsHttpChunkedDecoder.cpp',
|
||||
'nsHttpConnection.cpp',
|
||||
'nsHttpConnectionInfo.cpp',
|
||||
'nsHttpConnectionMgr.cpp',
|
||||
'nsHttpDigestAuth.cpp',
|
||||
'nsHttpHeaderArray.cpp',
|
||||
'nsHttpNTLMAuth.cpp',
|
||||
'nsHttpPipeline.cpp',
|
||||
'nsHttpRequestHead.cpp',
|
||||
'nsHttpResponseHead.cpp',
|
||||
'nsHttpTransaction.cpp',
|
||||
'NullHttpChannel.cpp',
|
||||
'NullHttpTransaction.cpp',
|
||||
'TunnelUtils.cpp',
|
||||
]
|
||||
|
||||
# These files cannot be built in unified mode because of OS X headers.
|
||||
SOURCES += [
|
||||
'nsHttpHandler.cpp',
|
||||
]
|
||||
|
||||
IPDL_SOURCES += [
|
||||
'PAltDataOutputStream.ipdl',
|
||||
'PHttpChannel.ipdl',
|
||||
]
|
||||
|
||||
EXTRA_JS_MODULES += [
|
||||
'UserAgentOverrides.jsm',
|
||||
'UserAgentUpdates.jsm',
|
||||
]
|
||||
|
||||
include('/ipc/chromium/chromium-config.mozbuild')
|
||||
|
||||
FINAL_LIBRARY = 'xul'
|
||||
|
||||
LOCAL_INCLUDES += [
|
||||
'/dom/base',
|
||||
'/netwerk/base',
|
||||
]
|
||||
|
||||
EXTRA_COMPONENTS += [
|
||||
'WellKnownOpportunisticUtils.js',
|
||||
'WellKnownOpportunisticUtils.manifest',
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue