diff options
Diffstat (limited to 'netwerk/protocol/http/moz.build')
-rw-r--r-- | netwerk/protocol/http/moz.build | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/netwerk/protocol/http/moz.build b/netwerk/protocol/http/moz.build new file mode 100644 index 000000000..e13101aa0 --- /dev/null +++ b/netwerk/protocol/http/moz.build @@ -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', +] |