mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
61f89fdae6
--HG-- extra : rebase_source : be8f7dad036016dac89f4d3b78f7ff1e3c79d0a9
35 lines
804 B
Makefile
35 lines
804 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_CHROME_FILES = \
|
|
memory-reports-good.json \
|
|
memory-reports-bad.json \
|
|
memory-reports-diff1.json \
|
|
memory-reports-diff2.json \
|
|
test_aboutcompartments.xul \
|
|
test_aboutmemory.xul \
|
|
test_aboutmemory2.xul \
|
|
test_aboutmemory3.xul \
|
|
test_aboutmemory4.xul \
|
|
test_sqliteMultiReporter.xul \
|
|
$(NULL)
|
|
|
|
ifndef MOZ_ASAN
|
|
MOCHITEST_CHROME_FILES += \
|
|
test_memoryReporters.xul \
|
|
$(NULL)
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|