diff -r 000000000000 -r 6474c204b198 netwerk/protocol/http/moz.build --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/netwerk/protocol/http/moz.build Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,108 @@ +# -*- Mode: python; c-basic-offset: 4; 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 += [ + 'nsIHttpActivityObserver.idl', + 'nsIHttpAuthenticableChannel.idl', + 'nsIHttpAuthenticator.idl', + 'nsIHttpAuthManager.idl', + 'nsIHttpChannel.idl', + 'nsIHttpChannelAuthProvider.idl', + 'nsIHttpChannelChild.idl', + 'nsIHttpChannelInternal.idl', + 'nsIHttpEventSink.idl', + 'nsIHttpHeaderVisitor.idl', + 'nsIHttpProtocolHandler.idl', +] + +XPIDL_MODULE = 'necko_http' + +EXPORTS += [ + 'nsHttp.h', + 'nsHttpAtomList.h', + 'nsHttpHeaderArray.h', + 'nsHttpResponseHead.h', +] + +EXPORTS.mozilla.net += [ + 'HttpBaseChannel.h', + 'HttpChannelChild.h', + 'HttpChannelParent.h', + 'HttpInfo.h', + 'PHttpChannelParams.h', + 'PSpdyPush.h', +] + +# ASpdySession.cpp and nsHttpAuthCache cannot be built in unified mode because +# they use plarena.h. +# The rest of these files cannot be built in unified mode because they want to +# force NSPR logging. +SOURCES += [ + 'ASpdySession.cpp', + 'ConnectionDiagnostics.cpp', + 'Http2Compression.cpp', + 'Http2Push.cpp', + 'Http2Session.cpp', + 'Http2Stream.cpp', + 'HttpBaseChannel.cpp', + 'HttpChannelChild.cpp', + 'HttpChannelParent.cpp', + 'HttpChannelParentListener.cpp', + 'HttpInfo.cpp', + 'nsHttp.cpp', + 'nsHttpActivityDistributor.cpp', + 'nsHttpAuthCache.cpp', + 'nsHttpAuthManager.cpp', + 'nsHttpBasicAuth.cpp', + 'nsHttpChannel.cpp', + 'nsHttpChannelAuthProvider.cpp', + 'nsHttpChunkedDecoder.cpp', + 'nsHttpConnection.cpp', + 'nsHttpConnectionInfo.cpp', + 'nsHttpConnectionMgr.cpp', + 'nsHttpDigestAuth.cpp', + 'nsHttpHeaderArray.cpp', + 'nsHttpNTLMAuth.cpp', + 'nsHttpPipeline.cpp', + 'nsHttpRequestHead.cpp', + 'nsHttpResponseHead.cpp', + 'nsHttpTransaction.cpp', + 'NullHttpTransaction.cpp', + 'SpdyPush3.cpp', + 'SpdyPush31.cpp', + 'SpdySession3.cpp', + 'SpdySession31.cpp', + 'SpdyStream3.cpp', + 'SpdyStream31.cpp', + 'SpdyZlibReporter.cpp', +] + +# These files cannot be built in unified mode because of OS X headers. +SOURCES += [ + 'nsHttpHandler.cpp', +] + +IPDL_SOURCES += [ + 'PHttpChannel.ipdl', +] + +EXTRA_JS_MODULES += [ + 'UserAgentOverrides.jsm', + 'UserAgentUpdates.jsm', +] + +FAIL_ON_WARNINGS = True + +MSVC_ENABLE_PGO = True + +include('/ipc/chromium/chromium-config.mozbuild') + +FINAL_LIBRARY = 'necko' + +LOCAL_INCLUDES += [ + '../../base/src', + '/content/base/src', +]