2003-09-12 00:32:33 +04:00
|
|
|
# vim: noexpandtab ts=8 sw=8
|
1999-04-25 23:25:24 +04:00
|
|
|
#
|
2004-04-19 02:01:16 +04:00
|
|
|
# ***** BEGIN LICENSE BLOCK *****
|
|
|
|
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-04-25 23:25:24 +04:00
|
|
|
#
|
2004-04-19 02:01:16 +04:00
|
|
|
# The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
# 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
# the License. You may obtain a copy of the License at
|
|
|
|
# http://www.mozilla.org/MPL/
|
|
|
|
#
|
|
|
|
# Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
# for the specific language governing rights and limitations under the
|
|
|
|
# License.
|
1999-04-25 23:25:24 +04:00
|
|
|
#
|
1999-11-06 06:40:37 +03:00
|
|
|
# The Original Code is mozilla.org code.
|
|
|
|
#
|
2004-04-19 02:01:16 +04:00
|
|
|
# The Initial Developer of the Original Code is
|
|
|
|
# Netscape Communications Corporation.
|
|
|
|
# Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
# the Initial Developer. All Rights Reserved.
|
|
|
|
#
|
|
|
|
# Contributor(s):
|
1999-11-06 06:40:37 +03:00
|
|
|
#
|
2004-04-19 02:01:16 +04:00
|
|
|
# Alternatively, the contents of this file may be used under the terms of
|
|
|
|
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
# in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
# of those above. If you wish to allow use of your version of this file only
|
|
|
|
# under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
# use your version of this file under the terms of the MPL, indicate your
|
|
|
|
# decision by deleting the provisions above and replace them with the notice
|
|
|
|
# and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
# the provisions above, a recipient may use your version of this file under
|
|
|
|
# the terms of any one of the MPL, the GPL or the LGPL.
|
1999-07-28 03:27:44 +04:00
|
|
|
#
|
2004-04-19 02:01:16 +04:00
|
|
|
# ***** END LICENSE BLOCK *****
|
1999-04-25 23:25:24 +04:00
|
|
|
|
|
|
|
DEPTH = ../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
2000-11-20 10:16:06 +03:00
|
|
|
MODULE = test_necko
|
2005-04-05 18:13:03 +04:00
|
|
|
|
2001-09-18 17:41:47 +04:00
|
|
|
REQUIRES = xpcom \
|
|
|
|
string \
|
|
|
|
necko \
|
2003-10-30 06:28:28 +03:00
|
|
|
pref \
|
2001-09-18 17:41:47 +04:00
|
|
|
util \
|
|
|
|
$(NULL)
|
1999-07-28 03:27:44 +04:00
|
|
|
|
2003-10-06 05:46:31 +04:00
|
|
|
CPPSRCS = \
|
2005-06-01 22:05:36 +04:00
|
|
|
TestIncrementalDownload.cpp \
|
2004-06-22 19:37:33 +04:00
|
|
|
TestStreamLoader.cpp \
|
2003-10-06 05:46:31 +04:00
|
|
|
PropertiesTest.cpp \
|
|
|
|
urltest.cpp \
|
|
|
|
TestCallbacks.cpp \
|
|
|
|
TestPageLoad.cpp \
|
|
|
|
TestURLParser.cpp \
|
|
|
|
TestStandardURL.cpp \
|
|
|
|
TestUpload.cpp \
|
|
|
|
TestBlockingSocket.cpp \
|
|
|
|
TestDNS.cpp \
|
2003-11-10 02:44:02 +03:00
|
|
|
TestOpen.cpp \
|
2003-10-30 06:28:28 +03:00
|
|
|
TestCookie.cpp \
|
2003-11-18 05:58:18 +03:00
|
|
|
TestServ.cpp \
|
2003-11-18 05:20:34 +03:00
|
|
|
ReadNTLM.cpp \
|
2003-10-06 05:46:31 +04:00
|
|
|
$(NULL)
|
2003-01-18 05:15:14 +03:00
|
|
|
|
2005-11-08 22:23:00 +03:00
|
|
|
ifndef MOZ_ENABLE_LIBXUL
|
|
|
|
CPPSRCS += \
|
|
|
|
TestPerf.cpp \
|
|
|
|
TestIDN.cpp \
|
|
|
|
TestSocketTransport.cpp \
|
|
|
|
TestStreamTransport.cpp \
|
|
|
|
TestStreamChannel.cpp \
|
|
|
|
TestStreamPump.cpp \
|
|
|
|
TestProtocols.cpp \
|
|
|
|
TestIOThreads.cpp \
|
|
|
|
$(NULL)
|
|
|
|
endif
|
|
|
|
|
2000-05-11 18:15:34 +04:00
|
|
|
SIMPLE_PROGRAMS = $(CPPSRCS:.cpp=$(BIN_SUFFIX))
|
1999-07-28 03:27:44 +04:00
|
|
|
|
1999-12-21 07:14:14 +03:00
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
|
2003-09-12 00:32:33 +04:00
|
|
|
LIBS = $(EXTRA_DSO_LIBS) \
|
2005-11-08 22:23:00 +03:00
|
|
|
$(DIST)/lib/$(LIB_PREFIX)xpcomglue_s.$(LIB_SUFFIX) \
|
2003-09-12 00:32:33 +04:00
|
|
|
$(MOZ_JS_LIBS) \
|
|
|
|
$(XPCOM_LIBS) \
|
|
|
|
$(NSPR_LIBS) \
|
|
|
|
$(NULL)
|
1999-04-25 23:25:24 +04:00
|
|
|
|
2004-10-22 00:57:17 +04:00
|
|
|
DEFINES += $(TK_CFLAGS)
|
|
|
|
|
1999-04-25 23:25:24 +04:00
|
|
|
include $(topsrcdir)/config/rules.mk
|
1999-07-28 03:27:44 +04:00
|
|
|
|
2005-03-25 06:41:33 +03:00
|
|
|
_UNIT_FILES = unit/test_all.sh \
|
|
|
|
unit/head.js \
|
|
|
|
unit/tail.js \
|
2005-04-01 22:35:14 +04:00
|
|
|
unit/test_protocolproxyservice.js \
|
|
|
|
unit/test_http_headers.js \
|
2005-08-13 15:46:11 +04:00
|
|
|
unit/test_cookie_header.js \
|
2005-07-26 00:27:04 +04:00
|
|
|
unit/test_parse_content_type.js \
|
2005-08-21 18:20:40 +04:00
|
|
|
unit/test_localstreams.js \
|
2005-11-12 21:17:19 +03:00
|
|
|
unit/test_file_protocol.js \
|
2005-04-01 22:35:14 +04:00
|
|
|
$(NULL)
|
2005-03-25 06:41:33 +03:00
|
|
|
libs:: $(_UNIT_FILES)
|
|
|
|
$(INSTALL) $^ $(DIST)/bin/necko_unit_tests
|
|
|
|
|
2005-08-11 20:41:54 +04:00
|
|
|
check::
|
2005-08-21 18:20:40 +04:00
|
|
|
$(RUN_TEST_PROGRAM) $(DIST)/bin/TestCookie
|
2005-08-11 20:41:54 +04:00
|
|
|
$(RUN_TEST_PROGRAM) $(DIST)/bin/necko_unit_tests/test_all.sh
|
|
|
|
|
2003-09-12 00:32:33 +04:00
|
|
|
_RES_FILES = urlparse.dat \
|
|
|
|
urlparse_unx.dat \
|
|
|
|
jarlist.dat \
|
|
|
|
$(NULL)
|
2001-12-15 02:49:04 +03:00
|
|
|
libs:: $(_RES_FILES)
|
2005-03-25 06:41:33 +03:00
|
|
|
$(INSTALL) $^ $(DIST)/bin/res
|
2002-04-25 06:52:44 +04:00
|
|
|
install:: $(_RES_FILES)
|
|
|
|
$(SYSINSTALL) $(IFLAGS1) $^ $(DESTDIR)$(mozappdir)/res
|