51bfbca2f1
The original support for CSS based shadows has been extended with support for an optional spread radius and the 'inset' keyword, so with the additional complexity a dedicated test case looks appropriate. https://bugzilla.gnome.org/show_bug.cgi?id=642334
35 lines
866 B
Makefile
35 lines
866 B
Makefile
noinst_SCRIPTS = run-test.sh
|
|
EXTRA_DIST = run-test.sh.in
|
|
|
|
TEST_JS = \
|
|
interactive/borders.js \
|
|
interactive/border-radius.js \
|
|
interactive/border-width.js \
|
|
interactive/box-layout.js \
|
|
interactive/box-shadows.js \
|
|
interactive/calendar.js \
|
|
interactive/css-fonts.js \
|
|
interactive/entry.js \
|
|
interactive/icons.js \
|
|
interactive/inline-style.js \
|
|
interactive/scrolling.js \
|
|
interactive/scroll-view-sizing.js \
|
|
interactive/table.js \
|
|
testcommon/border-image.png \
|
|
testcommon/face-plain.png \
|
|
testcommon/ui.js \
|
|
unit/format.js
|
|
EXTRA_DIST += $(TEST_JS)
|
|
|
|
TEST_MISC = \
|
|
testcommon/test.css
|
|
EXTRA_DIST += $(TEST_MISC)
|
|
|
|
run-test.sh: run-test.sh.in
|
|
$(AM_V_GEN) sed \
|
|
-e "s|@MUTTER_LIB_DIR[@]|$(MUTTER_LIB_DIR)|" \
|
|
-e "s|@srcdir[@]|$(srcdir)|" \
|
|
$< > $@ && chmod a+x $@
|
|
|
|
CLEANFILES = run-test.sh
|