mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
852 B
Makefile
30 lines
852 B
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/.
|
|
|
|
ifeq (WINNT,$(OS_ARCH))
|
|
MOCHITEST_CHROME_FILES += \
|
|
test_sizemode_attribute.xul \
|
|
sizemode_attribute.xul \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifneq (Linux,$(OS_ARCH))
|
|
MOCHITEST_CHROME_FILES += \
|
|
test_resize_move_windows.xul \
|
|
test_fullscreen.xul \
|
|
$(NULL)
|
|
else
|
|
$(filter disabled-on-linux-for-timeouts--bug-834716, test_resize_move_windows.xul)
|
|
$(filter disabled-on-linux-for-timeouts--bug-867745, test_fullscreen.xul)
|
|
endif
|
|
|
|
ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
MOCHITEST_CHROME_FILES += \
|
|
test_MozEnteredDomFullscreen_event.xul \
|
|
$(NULL)
|
|
else
|
|
$(filter disabled-on-os-x-for-intermittent-failures--bug-798848, test_MozEnteredDomFullscreen_event.xul)
|
|
endif
|