mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
94 lines
2.2 KiB
Makefile
94 lines
2.2 KiB
Makefile
# vim: noexpandtab ts=8 sw=8
|
|
#
|
|
# 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@
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = test_necko
|
|
|
|
DIRS = \
|
|
httpserver \
|
|
browser \
|
|
$(NULL)
|
|
|
|
|
|
CPPSRCS = \
|
|
TestIncrementalDownload.cpp \
|
|
TestStreamLoader.cpp \
|
|
PropertiesTest.cpp \
|
|
urltest.cpp \
|
|
TestCallbacks.cpp \
|
|
TestPageLoad.cpp \
|
|
TestURLParser.cpp \
|
|
TestStandardURL.cpp \
|
|
TestUpload.cpp \
|
|
TestBlockingSocket.cpp \
|
|
TestDNS.cpp \
|
|
TestOpen.cpp \
|
|
TestCookie.cpp \
|
|
TestServ.cpp \
|
|
ReadNTLM.cpp \
|
|
TestProtocols.cpp \
|
|
$(NULL)
|
|
|
|
SIMPLE_PROGRAMS := $(CPPSRCS:.cpp=$(BIN_SUFFIX))
|
|
|
|
# XXX Make this work in libxul builds.
|
|
#SIMPLE_PROGRAMS += \
|
|
# TestPerf$(BIN_SUFFIX) \
|
|
# TestIDN$(BIN_SUFFIX) \
|
|
# TestSocketTransport$(BIN_SUFFIX) \
|
|
# TestStreamTransport$(BIN_SUFFIX) \
|
|
# TestStreamChannel$(BIN_SUFFIX) \
|
|
# TestStreamPump$(BIN_SUFFIX) \
|
|
# TestIOThreads$(BIN_SUFFIX) \
|
|
# TestUDPSocketProvider$(BIN_SUFFIX) \
|
|
# $(NULL)
|
|
|
|
CPP_UNIT_TESTS = \
|
|
TestSTSParser.cpp \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
LIBS = $(EXTRA_DSO_LIBS) \
|
|
$(XPCOM_LIBS) \
|
|
$(NSPR_LIBS) \
|
|
$(NULL)
|
|
|
|
DEFINES += $(TK_CFLAGS)
|
|
|
|
XPCSHELL_TESTS = unit
|
|
# FIXME/bug 575918: out-of-process xpcshell is broken on OS X
|
|
ifneq ($(OS_ARCH),Darwin)
|
|
XPCSHELL_TESTS += unit_ipc
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
check::
|
|
$(RUN_TEST_PROGRAM) $(DIST)/bin/TestCookie$(BIN_SUFFIX)
|
|
|
|
_RES_FILES = urlparse.dat \
|
|
urlparse_unx.dat \
|
|
$(NULL)
|
|
libs:: $(_RES_FILES)
|
|
$(INSTALL) $^ $(DIST)/bin/res
|
|
install:: $(_RES_FILES)
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/res
|
|
|
|
# One of the xpcshell unit tests needs this file, so make sure it winds
|
|
# up in the test directory.
|
|
libs::
|
|
$(NSINSTALL) -D $(DEPTH)/_tests/xpcshell/$(relativesrcdir)/unit/data
|
|
$(INSTALL) $(topsrcdir)/netwerk/dns/effective_tld_names.dat \
|
|
$(DEPTH)/_tests/xpcshell/$(relativesrcdir)/unit/
|