зеркало из https://github.com/mozilla/gecko-dev.git
93 строки
2.4 KiB
Makefile
93 строки
2.4 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_CHROME_FILES = \
|
|
MozEnteredDomFullscreen_chrome.xul \
|
|
fullscreen.xul \
|
|
test_fullscreen_preventdefault.xul \
|
|
fullscreen_preventdefault.xul \
|
|
focus_window2.xul \
|
|
focus_frameset.html \
|
|
child_focus_frame.html \
|
|
test_focus_switchbinding.xul \
|
|
test_focus.xul \
|
|
window_focus.xul \
|
|
test_focused_link_scroll.xul \
|
|
test_geolocation.xul \
|
|
test_activation.xul \
|
|
window_activation.xul \
|
|
test_DOMWindowCreated.xul \
|
|
DOMWindowCreated_chrome.xul \
|
|
DOMWindowCreated_content.html \
|
|
test_sandbox_image.xul \
|
|
test_cyclecollector.xul \
|
|
test_popup_blocker_chrome.xul \
|
|
test_moving_xhr.xul \
|
|
test_nodesFromRect.html \
|
|
489127.html \
|
|
test_focus_docnav.xul \
|
|
window_focus_docnav.xul \
|
|
test_clonewrapper.xul \
|
|
test_moving_nodeList.xul \
|
|
test_callback_wrapping.xul \
|
|
window_callback_wrapping.xul \
|
|
test_sandbox_postMessage.html \
|
|
test_sandbox_bindings.xul \
|
|
test_selectAtPoint.html \
|
|
selectAtPoint.html \
|
|
test_bug799299.xul \
|
|
file_bug799299.xul \
|
|
test_bug800817.xul \
|
|
file_bug800817.xul \
|
|
test_bug830396.xul \
|
|
test_subscript_bindings.xul \
|
|
file_subscript_bindings.js \
|
|
test_sandbox_eventhandler.xul \
|
|
test_DOM_element_instanceof.xul \
|
|
file_DOM_element_instanceof.xul \
|
|
test_bug830858.xul \
|
|
file_bug830858.xul \
|
|
test_indexedSetter.html \
|
|
test_queryCaretRect.html \
|
|
queryCaretRectWin.html \
|
|
queryCaretRectUnix.html \
|
|
test_xray_event_constructor.xul \
|
|
$(NULL)
|
|
|
|
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
|
|
|
|
include $(topsrcdir)/config/rules.mk
|