mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
91 lines
2.1 KiB
Makefile
91 lines
2.1 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@
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
FAIL_ON_WARNINGS = 1
|
|
|
|
VPATH += $(topsrcdir)/build
|
|
|
|
# This can be deleted when SIMPLE_PROGRAMS is in moz.build
|
|
cppsrcs = \
|
|
nsIFileEnumerator.cpp \
|
|
TestCallTemplates.cpp \
|
|
TestINIParser.cpp \
|
|
TestPRIntN.cpp \
|
|
TestRacingServiceManager.cpp \
|
|
TestRegistrationOrder.cpp \
|
|
TestThreadPoolListener.cpp \
|
|
TestTimers.cpp \
|
|
TestBlockingProcess.cpp \
|
|
TestQuickReturn.cpp \
|
|
TestArguments.cpp \
|
|
TestUnicodeArguments.cpp \
|
|
$(NULL)
|
|
|
|
# This can be deleted when SIMPLE_PROGRAMS is in moz.build
|
|
ifeq ($(OS_TARGET),WINNT)
|
|
cppsrcs += TestBase64.cpp
|
|
endif
|
|
|
|
# This can be deleted when SIMPLE_PROGRAMS is in moz.build
|
|
ifdef WRAP_STL_INCLUDES
|
|
cppsrcs += TestSTLWrappers.cpp
|
|
endif
|
|
|
|
# TODO: Use CPPSRCS from moz.build
|
|
SIMPLE_PROGRAMS := $(cppsrcs:.cpp=$(BIN_SUFFIX))
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
LIBS += $(XPCOM_LIBS)
|
|
|
|
# Needed to resolve __yylex (?)
|
|
ifeq ($(OS_ARCH)$(OS_RELEASE),FreeBSD2)
|
|
LIBS += -lpcap
|
|
endif
|
|
|
|
# Make sure we have symbols in case we need to debug these.
|
|
MOZ_DEBUG_SYMBOLS = 1
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
LOCAL_INCLUDES = \
|
|
-I$(srcdir)/../ds \
|
|
$(NULL)
|
|
|
|
libs::
|
|
$(INSTALL) $(srcdir)/test.properties $(DIST)/bin/res
|
|
ifneq (,$(SIMPLE_PROGRAMS))
|
|
$(INSTALL) $(SIMPLE_PROGRAMS) $(DEPTH)/_tests/xpcshell/$(relativesrcdir)/unit
|
|
endif
|
|
|
|
install::
|
|
$(SYSINSTALL) $(IFLAGS1) $(srcdir)/test.properties $(DESTDIR)$(mozappdir)/res
|
|
|
|
ifeq (,$(filter-out WINNT os2-emx, $(HOST_OS_ARCH)))
|
|
getnativepath = $(call normalizepath,$(1))
|
|
else
|
|
getnativepath = $(1)
|
|
endif
|
|
|
|
abs_srcdir = $(call core_abspath,$(srcdir))
|
|
|
|
DIST_PATH = $(DIST)/bin/
|
|
RM_DIST = rm -f
|
|
regOrderDir="$(call getnativepath,$(abs_srcdir)/regorder)";
|
|
DOCOPY=
|
|
|
|
check::
|
|
XPCOM_DEBUG_BREAK=stack-and-abort $(RUN_TEST_PROGRAM) \
|
|
$(DIST)/bin/TestRegistrationOrder$(BIN_SUFFIX) $(regOrderDir)
|
|
|
|
GARBAGE += TestScriptable.h
|