mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
45 lines
1.2 KiB
Makefile
45 lines
1.2 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
|
|
|
|
MOCHITEST_FILES = \
|
|
pointerlock_utils.js \
|
|
file_approval.html \
|
|
file_pointerlock-api.html \
|
|
file_pointerlockerror.html \
|
|
file_escapeKey.html \
|
|
file_withoutDOM.html \
|
|
file_removedFromDOM.html \
|
|
file_pointerLockPref.html \
|
|
file_nestedFullScreen.html \
|
|
file_doubleLock.html \
|
|
file_childIframe.html \
|
|
file_movementXY.html \
|
|
file_infiniteMovement.html \
|
|
file_retargetMouseEvents.html \
|
|
file_targetOutOfFocus.html \
|
|
file_screenClientXYConst.html \
|
|
file_suppressSomeMouseEvents.html \
|
|
file_locksvgelement.html \
|
|
file_allowPointerLockSandboxFlag.html \
|
|
iframe_differentDOM.html \
|
|
$(NULL)
|
|
|
|
ifneq (gtk2,$(MOZ_WIDGET_TOOLKIT))
|
|
MOCHITEST_FILES += \
|
|
test_pointerlock-api.html \
|
|
$(NULL)
|
|
else
|
|
$(warning test_pointerlock-api.html is disabled on Linux for intermittent failures. Bug 788164)
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|