diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /build/automation-build.mk | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'build/automation-build.mk')
-rw-r--r-- | build/automation-build.mk | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/build/automation-build.mk b/build/automation-build.mk new file mode 100644 index 000000000..e25f90c5d --- /dev/null +++ b/build/automation-build.mk @@ -0,0 +1,67 @@ +# 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 $(MOZILLA_DIR)/build/binary-location.mk + +browser_path := '"$(browser_path)"' + +_PROFILE_DIR = $(TARGET_DEPTH)/_profile/pgo + +ABSOLUTE_TOPSRCDIR = $(abspath $(MOZILLA_DIR)) +_CERTS_SRC_DIR = $(ABSOLUTE_TOPSRCDIR)/build/pgo/certs + +AUTOMATION_PPARGS = \ + -DBROWSER_PATH=$(browser_path) \ + -DXPC_BIN_PATH='"$(DIST)/bin"' \ + -DBIN_SUFFIX='"$(BIN_SUFFIX)"' \ + -DPROFILE_DIR='"$(_PROFILE_DIR)"' \ + -DCERTS_SRC_DIR='"$(_CERTS_SRC_DIR)"' \ + -DPERL='"$(PERL)"' \ + $(NULL) + +ifeq ($(OS_ARCH),Darwin) +AUTOMATION_PPARGS += -DIS_MAC=1 +else +AUTOMATION_PPARGS += -DIS_MAC=0 +endif + +ifeq ($(OS_ARCH),Linux) +AUTOMATION_PPARGS += -DIS_LINUX=1 +else +AUTOMATION_PPARGS += -DIS_LINUX=0 +endif + +ifeq ($(host_os), cygwin) +AUTOMATION_PPARGS += -DIS_CYGWIN=1 +endif + +ifeq ($(ENABLE_TESTS), 1) +AUTOMATION_PPARGS += -DIS_TEST_BUILD=1 +else +AUTOMATION_PPARGS += -DIS_TEST_BUILD=0 +endif + +ifeq ($(MOZ_DEBUG), 1) +AUTOMATION_PPARGS += -DIS_DEBUG_BUILD=1 +else +AUTOMATION_PPARGS += -DIS_DEBUG_BUILD=0 +endif + +ifdef MOZ_CRASHREPORTER +AUTOMATION_PPARGS += -DCRASHREPORTER=1 +else +AUTOMATION_PPARGS += -DCRASHREPORTER=0 +endif + +ifdef MOZ_ASAN +AUTOMATION_PPARGS += -DIS_ASAN=1 +else +AUTOMATION_PPARGS += -DIS_ASAN=0 +endif + +automation.py: $(MOZILLA_DIR)/build/automation.py.in $(MOZILLA_DIR)/build/automation-build.mk + $(call py_action,preprocessor, \ + $(AUTOMATION_PPARGS) $(DEFINES) $(ACDEFINES) $< -o $@) + +GARBAGE += automation.py automation.pyc |