mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
69 lines
1.6 KiB
Makefile
69 lines
1.6 KiB
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
LIBRARY_NAME = nkhttp_s
|
|
LIBXUL_LIBRARY = 1
|
|
FORCE_STATIC_LIB = 1
|
|
FAIL_ON_WARNINGS := 1
|
|
|
|
CPPSRCS = \
|
|
nsHttp.cpp \
|
|
nsHttpHeaderArray.cpp \
|
|
nsHttpConnectionInfo.cpp \
|
|
nsHttpConnection.cpp \
|
|
nsHttpConnectionMgr.cpp \
|
|
nsHttpRequestHead.cpp \
|
|
nsHttpResponseHead.cpp \
|
|
nsHttpChunkedDecoder.cpp \
|
|
nsHttpAuthCache.cpp \
|
|
nsHttpAuthManager.cpp \
|
|
nsHttpBasicAuth.cpp \
|
|
nsHttpDigestAuth.cpp \
|
|
nsHttpNTLMAuth.cpp \
|
|
nsHttpTransaction.cpp \
|
|
nsHttpHandler.cpp \
|
|
HttpBaseChannel.cpp \
|
|
nsHttpChannel.cpp \
|
|
nsHttpPipeline.cpp \
|
|
nsHttpActivityDistributor.cpp \
|
|
nsHttpChannelAuthProvider.cpp \
|
|
HttpChannelParent.cpp \
|
|
HttpChannelChild.cpp \
|
|
HttpChannelParentListener.cpp \
|
|
HttpInfo.cpp \
|
|
NullHttpTransaction.cpp \
|
|
ASpdySession.cpp \
|
|
SpdySession2.cpp \
|
|
SpdyStream2.cpp \
|
|
SpdySession3.cpp \
|
|
SpdyStream3.cpp \
|
|
ConnectionDiagnostics.cpp \
|
|
$(NULL)
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../../base/src \
|
|
-I$(topsrcdir)/xpcom/ds \
|
|
-I$(topsrcdir)/content/base/src \
|
|
-I$(topsrcdir)/content/events/src \
|
|
$(NULL)
|
|
|
|
EXTRA_JS_MODULES = \
|
|
UserAgentOverrides.jsm \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
include $(topsrcdir)/ipc/chromium/chromium-config.mk
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
DEFINES += -DIMPL_NS_NET
|
|
|