mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
fd5055803b
This is the beginning of Mozilla's new build system. In this patch, we have a Python sandbox tailored for execution of Python scripts which will define the build system. We also have a build reader that traverses a linked set of scripts. More details are available in the thorough README.rst files as part of this patch. * * * Bug 784841 - Part 2b: Option to not descend into child moz.build files; r=ted
23 lines
568 B
Makefile
23 lines
568 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@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
test_dirs := \
|
|
mozbuild/mozbuild/test \
|
|
mozbuild/mozbuild/test/compilation \
|
|
mozbuild/mozbuild/test/frontend \
|
|
$(NULL)
|
|
|
|
PYTHON_UNIT_TESTS := $(foreach dir,$(test_dirs),$(wildcard $(srcdir)/$(dir)/*.py))
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
|