gecko/toolkit/components/passwordmgr/test/Makefile.in

93 lines
2.5 KiB
Makefile
Raw Normal View History

#
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/.
2011-06-03 18:12:08 -07:00
DEPTH = ../../../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
relativesrcdir = toolkit/components/passwordmgr/test
include $(topsrcdir)/config/config.mk
ifneq (mobile,$(MOZ_BUILD_APP))
DIRS = \
2011-06-03 18:12:08 -07:00
browser \
$(NULL)
endif
# Module name for xpcshell tests.
2011-06-03 18:12:08 -07:00
MODULE = test_passwordmgr
XPCSHELL_TESTS = unit
# Mochitest tests
MOCHITEST_FILES = \
2011-06-03 18:12:08 -07:00
test_basic_form.html \
test_basic_form_html5.html \
test_basic_form_2.html \
test_basic_form_0pw.html \
test_basic_form_1pw.html \
test_basic_form_1pw_2.html \
test_basic_form_2pw_1.html \
test_basic_form_2pw_2.html \
test_basic_form_3pw_1.html \
test_basic_form_autocomplete.html \
test_basic_form_observer_autofillForms.html \
test_basic_form_observer_autocomplete.html \
test_basic_form_observer_foundLogins.html \
test_basic_form_pwonly.html \
test_bug_227640.html \
test_bug_242956.html \
test_bug_360493_1.html \
test_bug_360493_2.html \
test_bug_391514.html \
test_bug_427033.html \
test_bug_444968.html \
test_bug_627616.html \
2011-06-03 18:12:08 -07:00
test_master_password.html \
test_master_password_cleanup.html \
test_maxforms_1.html \
test_maxforms_2.html \
test_maxforms_3.html \
test_notifications.html \
test_privbrowsing.html \
2011-06-03 18:12:08 -07:00
test_prompt_async.html \
test_xhr.html \
test_xml_load.html \
test_zzz_finish.html \
pwmgr_common.js \
prompt_common.js \
notification_common.js \
authenticate.sjs \
formsubmit.sjs \
subtst_privbrowsing_1.html \
subtst_privbrowsing_2.html \
subtst_privbrowsing_3.html \
subtst_privbrowsing_4.html \
subtst_master_pass.html \
subtst_notifications_1.html \
subtst_notifications_2.html \
subtst_notifications_3.html \
subtst_notifications_4.html \
subtst_notifications_5.html \
subtst_notifications_6.html \
subtst_notifications_7.html \
subtst_notifications_8.html \
subtst_notifications_9.html \
subtst_notifications_10.html \
subtst_prompt_async.html \
$(NULL)
ifneq ($(OS_TARGET),Linux)
MOCHITEST_FILES += \
test_prompt.html \
$(NULL)
endif
# This test doesn't pass because we can't ensure a cross-platform
# event that occurs between DOMContentLoaded and Pageload
# test_bug_221634.html
include $(topsrcdir)/config/rules.mk