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
33 lines
705 B
Makefile
33 lines
705 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
|
|
|
|
TEST_DIRS = unit
|
|
|
|
XPCSHELL_TESTS = unit
|
|
|
|
MOCHITEST_FILES = \
|
|
test_BOMEncoding.js \
|
|
test_TextDecoder.html \
|
|
test_TextDecoder.js \
|
|
test_TextEncoder.html \
|
|
test_TextEncoder.js \
|
|
test_stringencoding.html \
|
|
$(NULL)
|
|
|
|
MOCHITEST_CHROME_FILES = \
|
|
file_stringencoding.jsm \
|
|
test_stringencoding.xul \
|
|
$(NULL)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|