mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
67 lines
1.8 KiB
Makefile
67 lines
1.8 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
|
|
|
|
_CHROME_FILES = \
|
|
popup_shared.js \
|
|
tree_shared.js \
|
|
$(NULL)
|
|
|
|
MOCHITEST_FILES = \
|
|
test_contextmenu_nested.xul \
|
|
test_tree_column_reorder.xul \
|
|
tree_shared.js \
|
|
test_mousecapture_area.html \
|
|
popup_shared.js \
|
|
test_videocontrols.html \
|
|
test_videocontrols_video_direction.html \
|
|
test_videocontrols_audio_direction.html \
|
|
test_audiocontrols_dimensions.html \
|
|
videocontrols_direction-1-ref.html \
|
|
videocontrols_direction-1a.html \
|
|
videocontrols_direction-1b.html \
|
|
videocontrols_direction-1c.html \
|
|
videocontrols_direction-1d.html \
|
|
videocontrols_direction-1e.html \
|
|
videocontrols_direction-2-ref.html \
|
|
videocontrols_direction-2a.html \
|
|
videocontrols_direction-2b.html \
|
|
videocontrols_direction-2c.html \
|
|
videocontrols_direction-2d.html \
|
|
videocontrols_direction-2e.html \
|
|
videocontrols_direction_test.js \
|
|
use_large_cache.js \
|
|
$(topsrcdir)/content/media/test/audio.wav \
|
|
$(topsrcdir)/content/media/test/seek_with_sound.ogg \
|
|
videomask.css \
|
|
$(NULL)
|
|
|
|
MOCHITEST_CHROME_FILES = \
|
|
test_editor_currentURI.xul \
|
|
$(NULL)
|
|
|
|
ifeq (gtk2,$(MOZ_WIDGET_TOOLKIT))
|
|
MOCHITEST_FILES += test_menubar_gtk.xul \
|
|
window_menubar_gtk.xul
|
|
else
|
|
ifneq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
|
MOCHITEST_FILES += test_menubar.xul \
|
|
window_menubar.xul
|
|
endif
|
|
endif
|
|
|
|
libs:: $(_CHROME_FILES)
|
|
$(INSTALL) $(foreach f,$^,"$f") $(DEPTH)/_tests/testing/mochitest/chrome/$(relativesrcdir)/../chrome
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|