mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
47 lines
1.5 KiB
Makefile
47 lines
1.5 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/.
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# Harness files from the srcdir
|
|
TEST_HARNESS_FILES := \
|
|
runxpcshelltests.py \
|
|
remotexpcshelltests.py \
|
|
runtestsb2g.py \
|
|
head.js \
|
|
node-spdy \
|
|
moz-spdy \
|
|
node-http2 \
|
|
moz-http2 \
|
|
$(NULL)
|
|
|
|
# Extra files needed from $(topsrcdir)/build
|
|
EXTRA_BUILD_FILES := \
|
|
automationutils.py \
|
|
manifestparser.py \
|
|
$(NULL)
|
|
|
|
# Components / typelibs that don't get packaged with
|
|
# the build, but that we need for the test harness.
|
|
TEST_HARNESS_COMPONENTS := \
|
|
httpd.js \
|
|
httpd.manifest \
|
|
$(NULL)
|
|
|
|
# Rules for staging the necessary harness bits for a test package
|
|
PKG_STAGE = $(DIST)/test-stage
|
|
|
|
libs::
|
|
cp $(DEPTH)/_tests/xpcshell/xpcshell.ini $(DEPTH)/_tests/xpcshell/all-test-dirs.list
|
|
|
|
stage-package:
|
|
$(NSINSTALL) -D $(PKG_STAGE)/xpcshell/tests
|
|
@(cd $(srcdir) && tar $(TAR_CREATE_FLAGS) - $(TEST_HARNESS_FILES)) | (cd $(PKG_STAGE)/xpcshell && tar -xf -)
|
|
@(cd $(topsrcdir)/build && tar $(TAR_CREATE_FLAGS) - $(EXTRA_BUILD_FILES)) | (cd $(PKG_STAGE)/xpcshell && tar -xf -)
|
|
@cp $(DEPTH)/mozinfo.json $(PKG_STAGE)/xpcshell
|
|
@cp $(DEPTH)/build/automation.py $(PKG_STAGE)/xpcshell
|
|
(cd $(DEPTH)/_tests/xpcshell/ && tar $(TAR_CREATE_FLAGS) - *) | (cd $(PKG_STAGE)/xpcshell/tests && tar -xf -)
|
|
@(cd $(DIST)/bin/components && tar $(TAR_CREATE_FLAGS) - $(TEST_HARNESS_COMPONENTS)) | (cd $(PKG_STAGE)/bin/components && tar -xf -)
|