From 5f8de423f190bbb79a62f804151bc24824fa32d8 Mon Sep 17 00:00:00 2001 From: "Matt A. Tobin" Date: Fri, 2 Feb 2018 04:16:08 -0500 Subject: Add m-esr52 at 52.6.0 --- build/automation-build.mk | 67 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 build/automation-build.mk (limited to 'build/automation-build.mk') 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 -- cgit v1.2.3