mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
6aa99b0162
--HG-- rename : dom/encoding/test/test-big5.js => dom/encoding/test/unit/test_big5.js rename : dom/encoding/test/test-euc-jp.js => dom/encoding/test/unit/test_euc-jp.js rename : dom/encoding/test/test-euc-kr.js => dom/encoding/test/unit/test_euc-kr.js rename : dom/encoding/test/test-gbk.js => dom/encoding/test/unit/test_gbk.js rename : dom/encoding/test/test-hz-gb-2312.js => dom/encoding/test/unit/test_hz-gb-2312.js rename : dom/encoding/test/test-iso-2022-jp.js => dom/encoding/test/unit/test_iso-2022-jp.js rename : dom/encoding/test/test-iso-2022-kr.js => dom/encoding/test/unit/test_iso-2022-kr.js rename : dom/encoding/test/test-shift_jis.js => dom/encoding/test/unit/test_shift_jis.js rename : dom/encoding/test/tests.js => dom/encoding/test/unit/test_singlebytes.js
27 lines
605 B
Makefile
27 lines
605 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MOCHITEST_FILES = \
|
|
test_big5.js \
|
|
test_euc-jp.js \
|
|
test_euc-kr.js \
|
|
test_gbk.js \
|
|
test_hz-gb-2312.js \
|
|
test_iso-2022-jp.js \
|
|
test_iso-2022-kr.js \
|
|
test_shift_jis.js \
|
|
test_singlebytes.js \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|