mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
29 lines
972 B
Makefile
29 lines
972 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/.
|
|
|
|
MOCHITEST_CHROME_FILES := \
|
|
../widgets/popup_shared.js \
|
|
../widgets/tree_shared.js \
|
|
$(SHULL)
|
|
|
|
# test_panel_focus.xul won't work if the Full Keyboard Access preference is set to
|
|
# textboxes and lists only, so skip this test on Mac
|
|
ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
MOCHITEST_CHROME_FILES += test_panel_focus.xul \
|
|
window_panel_focus.xul \
|
|
test_chromemargin.xul \
|
|
window_chromemargin.xul \
|
|
bug451540_window.xul \
|
|
test_bug451540.xul
|
|
else
|
|
MOCHITEST_CHROME_FILES += test_autocomplete_mac_caret.xul
|
|
endif
|
|
|
|
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
|
|
MOCHITEST_CHROME_FILES += $(filter disabled-temporarily, test_cursorsnap.xul) \
|
|
window_cursorsnap_dialog.xul \
|
|
window_cursorsnap_wizard.xul
|
|
endif
|
|
|