mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
36 lines
1.0 KiB
Makefile
36 lines
1.0 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
|
|
|
|
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 \
|
|
test_SpecialPowersPushPermissions.html \
|
|
file_SpecialPowersFrame1.html \
|
|
test_bug816847.html \
|
|
test_sanity_cleanup.html \
|
|
test_sanity_cleanup2.html \
|
|
test_sanityEventUtils.html \
|
|
test_sanitySimpletest.html \
|
|
$(NULL)
|
|
|
|
# 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
|