mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
aef0354f7d
--HG-- rename : dom/tests/mochitest/localstorage/frame_clear_browser_data.html => extensions/cookie/test/frame_clear_browser_data.html rename : extensions/cookie/test/test_app_uninstall_permissions.html => extensions/cookie/test/test_app_cleardata_permissions.html
77 lines
1.9 KiB
Makefile
77 lines
1.9 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
|
|
|
|
MODULE = test_cookies
|
|
|
|
MOCHITEST_FILES = \
|
|
test_samedomain.html \
|
|
file_testcommon.js \
|
|
file_domain_inner.html \
|
|
file_domain_inner_inner.html \
|
|
test_differentdomain.html \
|
|
test_different_domain_in_hierarchy.html \
|
|
file_domain_hierarchy_inner.html \
|
|
file_domain_hierarchy_inner_inner.html \
|
|
file_domain_hierarchy_inner_inner_inner.html \
|
|
test_image.html \
|
|
file_image_inner.html \
|
|
file_image_inner_inner.html \
|
|
image1.png \
|
|
image1.png^headers^ \
|
|
image2.png \
|
|
image2.png^headers^ \
|
|
beltzner.jpg \
|
|
beltzner.jpg^headers^ \
|
|
damonbowling.jpg \
|
|
damonbowling.jpg^headers^ \
|
|
test1.css \
|
|
test1.css^headers^ \
|
|
test2.css \
|
|
test2.css^headers^ \
|
|
test_loadflags.html \
|
|
file_loadflags_inner.html \
|
|
file_testloadflags.js \
|
|
test_same_base_domain.html \
|
|
file_subdomain_inner.html \
|
|
test_same_base_domain_2.html \
|
|
test_same_base_domain_3.html \
|
|
test_same_base_domain_4.html \
|
|
file_localhost_inner.html \
|
|
test_same_base_domain_5.html \
|
|
test_same_base_domain_6.html \
|
|
file_loopback_inner.html \
|
|
$(NULL)
|
|
|
|
MOCHITEST_CHROME_FILES = \
|
|
test_permissionmanager_app_isolation.html \
|
|
test_app_cleardata_permissions.html \
|
|
test_app_uninstall_permissions.html \
|
|
test_app_uninstall_cookies.html \
|
|
frame_clear_browser_data.html \
|
|
channel_utils.js \
|
|
$(NULL)
|
|
|
|
MOCHITEST_BROWSER_FILES = \
|
|
browser_test_favicon.js \
|
|
$(NULL)
|
|
|
|
XPCSHELL_TESTS = unit
|
|
|
|
# FIXME/bug 575918: out-of-process xpcshell is broken on OS X
|
|
ifneq ($(OS_ARCH),Darwin)
|
|
XPCSHELL_TESTS += unit_ipc
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|