2012-03-30 21:42:20 -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/.
|
|
|
|
|
2012-08-04 11:26:44 -07:00
|
|
|
DEPTH = @DEPTH@
|
2012-03-30 21:42:20 -07:00
|
|
|
topsrcdir = @top_srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
VPATH = @srcdir@
|
2012-08-04 11:26:44 -07:00
|
|
|
relativesrcdir = @relativesrcdir@
|
2012-03-30 21:42:20 -07:00
|
|
|
|
2012-05-23 09:44:48 -07:00
|
|
|
LIBRARY_NAME = dombindings_test_s
|
|
|
|
LIBXUL_LIBRARY = 1
|
|
|
|
FORCE_STATIC_LIB = 1
|
|
|
|
# Do NOT export this library. We don't actually want our test code
|
|
|
|
# being added to libxul or anything.
|
|
|
|
|
2013-04-09 15:39:44 -07:00
|
|
|
# pymake can't handle descending into dom/bindings several times simultaneously
|
|
|
|
ifdef .PYMAKE
|
|
|
|
.NOTPARALLEL:
|
|
|
|
endif
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
include $(DEPTH)/config/autoconf.mk
|
2012-05-23 09:44:48 -07:00
|
|
|
|
|
|
|
# Need this to find all our DOM source files.
|
|
|
|
include $(topsrcdir)/dom/dom-config.mk
|
|
|
|
|
|
|
|
# And need this for $(test_webidl_files)
|
|
|
|
include $(topsrcdir)/dom/webidl/WebIDL.mk
|
|
|
|
|
|
|
|
# But the webidl actually lives in our parent dir
|
|
|
|
test_webidl_files := $(addprefix ../,$(test_webidl_files))
|
|
|
|
|
|
|
|
CPPSRCS := $(subst .webidl,Binding.cpp,$(test_webidl_files))
|
|
|
|
|
|
|
|
LOCAL_INCLUDES += \
|
|
|
|
-I$(topsrcdir)/js/xpconnect/src \
|
|
|
|
-I$(topsrcdir)/js/xpconnect/wrappers \
|
2012-06-11 13:04:34 -07:00
|
|
|
-I$(topsrcdir)/dom/bindings \
|
2012-05-23 09:44:48 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2012-03-30 21:42:20 -07:00
|
|
|
|
2012-05-23 09:44:48 -07:00
|
|
|
# If you change bindinggen_dependencies here, change it in
|
|
|
|
# dom/bindings/Makefile.in too. But note that we include ../Makefile
|
|
|
|
# here manually, since $(GLOBAL_DEPS) won't cover it.
|
|
|
|
bindinggen_dependencies := \
|
|
|
|
../BindingGen.py \
|
|
|
|
../Bindings.conf \
|
|
|
|
../Configuration.py \
|
|
|
|
../Codegen.py \
|
2012-06-11 15:21:35 -07:00
|
|
|
../parser/WebIDL.py \
|
2012-05-23 09:44:48 -07:00
|
|
|
../Makefile \
|
|
|
|
$(GLOBAL_DEPS) \
|
|
|
|
$(NULL)
|
|
|
|
|
2012-08-04 00:43:57 -07:00
|
|
|
MOCHITEST_FILES := \
|
|
|
|
test_bug773326.html \
|
2012-06-21 00:11:07 -07:00
|
|
|
test_enums.html \
|
2012-06-25 20:37:47 -07:00
|
|
|
test_integers.html \
|
2012-05-02 06:28:17 -07:00
|
|
|
test_interfaceToString.html \
|
2012-03-30 21:42:20 -07:00
|
|
|
test_lookupGetter.html \
|
2012-05-02 21:35:38 -07:00
|
|
|
test_InstanceOf.html \
|
2013-02-22 01:25:24 -08:00
|
|
|
file_InstanceOf.html \
|
2012-05-02 05:49:43 -07:00
|
|
|
test_traceProtos.html \
|
2012-07-03 14:34:56 -07:00
|
|
|
test_forOf.html \
|
|
|
|
forOf_iframe.html \
|
2012-07-26 21:09:09 -07:00
|
|
|
test_sequence_wrapping.html \
|
2012-08-22 18:16:14 -07:00
|
|
|
file_bug775543.html \
|
2012-09-07 08:07:12 -07:00
|
|
|
test_bug788369.html \
|
2012-10-16 11:06:10 -07:00
|
|
|
test_bug742191.html \
|
2012-11-08 23:48:42 -08:00
|
|
|
test_namedNoIndexed.html \
|
2012-12-13 23:32:13 -08:00
|
|
|
test_bug759621.html \
|
2013-01-14 02:29:49 -08:00
|
|
|
test_queryInterface.html \
|
2013-03-05 10:41:24 -08:00
|
|
|
test_exceptionThrowing.html \
|
2013-03-20 09:22:25 -07:00
|
|
|
test_bug852846.html \
|
2013-04-16 10:02:57 -07:00
|
|
|
test_bug862092.html \
|
2013-05-02 11:38:20 -07:00
|
|
|
test_bug560072.html \
|
2012-08-22 18:16:14 -07:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
MOCHITEST_CHROME_FILES = \
|
|
|
|
test_bug775543.html \
|
2012-03-30 21:42:20 -07:00
|
|
|
$(NULL)
|
|
|
|
|
2013-03-09 23:58:21 -08:00
|
|
|
ifdef GNU_CC
|
|
|
|
CXXFLAGS += -Wno-uninitialized
|
|
|
|
endif
|
|
|
|
|
2012-07-26 09:38:03 -07:00
|
|
|
# Include rules.mk before any of our targets so our first target is coming from
|
|
|
|
# rules.mk and running make with no target in this dir does the right thing.
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|
|
|
|
$(CPPSRCS): ../%Binding.cpp: $(bindinggen_dependencies) \
|
|
|
|
../%.webidl \
|
2012-10-17 18:17:16 -07:00
|
|
|
TestExampleInterface-example \
|
2012-11-09 08:24:32 -08:00
|
|
|
TestExampleProxyInterface-example \
|
2012-07-26 09:38:03 -07:00
|
|
|
$(NULL)
|
|
|
|
$(MAKE) -C .. $*Binding.h
|
|
|
|
$(MAKE) -C .. $*Binding.cpp
|
2012-05-23 09:44:48 -07:00
|
|
|
|
2012-10-17 18:17:16 -07:00
|
|
|
TestExampleInterface-example:
|
|
|
|
$(MAKE) -C .. TestExampleInterface-example
|
|
|
|
|
2012-11-09 08:24:32 -08:00
|
|
|
TestExampleProxyInterface-example:
|
|
|
|
$(MAKE) -C .. TestExampleProxyInterface-example
|
|
|
|
|
2012-06-10 16:44:50 -07:00
|
|
|
check::
|
2012-07-02 13:32:42 -07:00
|
|
|
PYTHONDONTWRITEBYTECODE=1 $(PYTHON) $(topsrcdir)/config/pythonpath.py \
|
|
|
|
$(PLY_INCLUDE) $(srcdir)/../parser/runtests.py
|
2012-06-22 13:18:50 -07:00
|
|
|
|
|
|
|
check-interactive:
|
2012-07-02 13:32:42 -07:00
|
|
|
PYTHONDONTWRITEBYTECODE=1 $(PYTHON) $(topsrcdir)/config/pythonpath.py \
|
|
|
|
$(PLY_INCLUDE) $(srcdir)/../parser/runtests.py -q
|