mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
33f3b92033
As a first step, this moves PYTHON_UNIT_TESTS to moz.build as a passthru variable. In the future, we could hook it up to |mach test|. The __init__.py files may not need to be in the list, but I don't want to change the list here.
43 lines
1.1 KiB
Makefile
43 lines
1.1 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 packages from the srcdir
|
|
MOZBASE_PACKAGES = \
|
|
manifestparser \
|
|
mozcrash \
|
|
mozfile \
|
|
mozhttpd \
|
|
mozinfo \
|
|
mozinstall \
|
|
mozlog \
|
|
mozprocess \
|
|
mozprofile \
|
|
mozrunner \
|
|
mozdevice \
|
|
moznetwork \
|
|
mozsystemmonitor \
|
|
moztest \
|
|
mozversion \
|
|
$(NULL)
|
|
|
|
MOZBASE_EXTRAS = \
|
|
setup_development.py \
|
|
test.py \
|
|
test-manifest.ini \
|
|
$(NULL)
|
|
|
|
_DEST_DIR = $(DEPTH)/_tests/mozbase
|
|
libs:: $(MOZBASE_PACKAGES)
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py $^ $(_DEST_DIR)
|
|
libs:: $(MOZBASE_EXTRAS)
|
|
$(PYTHON) $(topsrcdir)/config/nsinstall.py $^ $(_DEST_DIR)
|
|
|
|
stage-package: PKG_STAGE = $(DIST)/test-stage
|
|
stage-package:
|
|
$(NSINSTALL) -D $(PKG_STAGE)/mozbase
|
|
@(cd $(srcdir) && tar $(TAR_CREATE_FLAGS) - $(MOZBASE_PACKAGES)) | (cd $(PKG_STAGE)/mozbase && tar -xf -)
|
|
@(cd $(srcdir) && tar $(TAR_CREATE_FLAGS) - $(MOZBASE_EXTRAS)) | (cd $(PKG_STAGE)/mozbase && tar -xf -)
|