mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
42 lines
1.1 KiB
Makefile
42 lines
1.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 = ../../..
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = testing/mochitest/tests
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
PARALLEL_DIRS = \
|
|
MochiKit-1.4.2 \
|
|
SimpleTest \
|
|
browser \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
_TEST_FILES = \
|
|
test_sanity.html \
|
|
test_sanityException.html \
|
|
test_sanityException2.html \
|
|
test_sanityWindowSnapshot.html \
|
|
test_SpecialPowersExtension.html \
|
|
test_SpecialPowersExtension2.html \
|
|
file_SpecialPowersFrame1.html \
|
|
$(NULL)
|
|
|
|
ifneq ($(OS_TARGET),Android)
|
|
# Disabled on Android for permaorange, see bug 688052
|
|
_TEST_FILES += \
|
|
test_sanityEventUtils.html \
|
|
test_sanitySimpletest.html
|
|
endif
|
|
# Copy the sanity tests into a subdirectory, so the top level is all dirs
|
|
# in the test screen.
|
|
libs:: $(_TEST_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/$(relativesrcdir)/Harness_sanity
|