2007-03-22 10:30:00 -07:00
|
|
|
# vim: noexpandtab ts=8 sw=8
|
|
|
|
#
|
2012-05-21 04:12:37 -07:00
|
|
|
# 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/.
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-06-25 10:56:51 -07:00
|
|
|
$(warning httpserver XPI_NAME=$(XPI_NAME))
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
DEPTH = ../../..
|
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2010-08-26 14:47:28 -07:00
|
|
|
relativesrcdir = netwerk/test/httpserver
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
|
|
|
|
MODULE = test_necko
|
2010-06-30 09:42:24 -07:00
|
|
|
NO_INTERFACES_MANIFEST = 1
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2007-07-18 14:32:50 -07:00
|
|
|
EXTRA_COMPONENTS = \
|
|
|
|
httpd.js \
|
2010-06-25 10:56:51 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
ifdef XPI_NAME
|
|
|
|
NO_JS_MANIFEST = 1
|
|
|
|
USE_EXTENSION_MANIFEST = 1
|
|
|
|
else
|
|
|
|
EXTRA_COMPONENTS += \
|
2010-06-22 09:59:15 -07:00
|
|
|
httpd.manifest \
|
2007-07-18 14:32:50 -07:00
|
|
|
$(NULL)
|
2010-06-25 10:56:51 -07:00
|
|
|
endif
|
2007-07-18 14:32:50 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
XPIDLSRCS = \
|
|
|
|
nsIHttpServer.idl \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
XPCSHELL_TESTS = test
|
|
|
|
|
|
|
|
include $(topsrcdir)/config/rules.mk
|