Bug 1845017 - Disable the TestPHCExhaustion test r=glandium
[gecko.git] / Makefile.in
blobb5ecb8ca222e40d133c8b163eda40985beb33b7e
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 ifeq (,$(MAKE_VERSION))
7 $(error GNU Make is required)
8 endif
9 make_min_ver := 3.81
10 ifneq ($(make_min_ver),$(firstword $(sort $(make_min_ver) $(MAKE_VERSION))))
11 $(error GNU Make $(make_min_ver) or higher is required)
12 endif
14 export TOPLEVEL_BUILD := 1
16 default::
18 ifndef TEST_MOZBUILD
19 ifdef MOZ_BUILD_APP
20 include $(wildcard $(topsrcdir)/$(MOZ_BUILD_APP)/build.mk)
21 endif
22 endif
24 include $(topsrcdir)/config/config.mk
26 ifneq (mobile/android,$(MOZ_BUILD_APP))
27 $(MDDEPDIR)/buildid.h.stub $(MDDEPDIR)/source-repo.h.stub: FORCE
28 endif
29 source-repo.h: $(MDDEPDIR)/source-repo.h.stub
30 buildid.h: $(MDDEPDIR)/buildid.h.stub
32 BUILD_BACKEND_FILES := $(addprefix backend.,$(addsuffix Backend,$(BUILD_BACKENDS)))
34 ifndef TEST_MOZBUILD
35 # We need to explicitly put BUILD_BACKEND_FILES here otherwise the rule in
36 # rules.mk doesn't run early enough.
37 $(RUNNABLE_TIERS) binaries:: CLOBBER $(BUILD_BACKEND_FILES)
38 endif
40 ifdef JS_STANDALONE
41 .PHONY: CLOBBER
42 CLOBBER:
43 else
44 CLOBBER: $(topsrcdir)/CLOBBER
45 @echo 'STOP! The CLOBBER file has changed.'
46 @echo 'Please run the build through "mach build".'
47 @exit 1
48 endif
50 install_manifests := \
51 $(addprefix dist/,branding include public private xpi-stage) \
52 _tests \
53 $(NULL)
54 # Skip the dist/bin install manifest when using the hybrid
55 # FasterMake/RecursiveMake backend. This is a hack until bug 1241744 moves
56 # xpidl handling to FasterMake in that case, mechanically making the dist/bin
57 # install manifest non-existent (non-existent manifests being skipped)
58 ifeq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
59 install_manifests += dist/bin
60 endif
61 install_manifest_depends = \
62 CLOBBER \
63 $(BUILD_BACKEND_FILES) \
64 $(NULL)
66 .PHONY: install-manifests
67 install-manifests: $(addprefix install-,$(install_manifests))
69 # If we're using the hybrid FasterMake/RecursiveMake backend, we want
70 # to recurse in the faster/ directory in parallel of install manifests.
71 ifneq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
72 install-manifests: faster
73 .PHONY: faster
74 faster:
75 $(MAKE) -C faster FASTER_RECURSIVE_MAKE=1
76 endif
78 .PHONY: $(addprefix install-,$(install_manifests))
79 $(addprefix install-,$(install_manifests)): install-%: $(install_manifest_depends)
80 ifneq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
81 @# If we're using the hybrid FasterMake/RecursiveMake backend, we want
82 @# to ensure the FasterMake end doesn't have install manifests for the
83 @# same directory, because that would blow up
84 $(if $(wildcard _build_manifests/install/$(subst /,_,$*)),$(if $(wildcard faster/install_$(subst /,_,$*)*),$(error FasterMake and RecursiveMake ends of the hybrid build system want to handle $*)))
85 endif
86 $(addprefix $(call py_action,process_install_manifest,$(if $(filter copy,$(NSDISTMODE)),--no-symlinks )--track install_$(subst /,_,$*).track $*) ,$(wildcard _build_manifests/install/$(subst /,_,$*)))
88 # Dummy wrapper rule to allow the faster backend to piggy back
89 $(addprefix install-,$(subst /,_,$(filter dist/%,$(install_manifests)))): install-dist_%: install-dist/% ;
91 .PHONY: install-tests
92 install-tests: install-test-files
94 .PHONY: install-test-files
95 install-test-files:
96 $(call py_action,process_install_manifest,$(if $(filter copy,$(NSDISTMODE)),--no-symlinks )--track install__test_files.track _tests _build_manifests/install/_test_files)
98 include $(topsrcdir)/build/moz-automation.mk
100 # Dummy rule for the cases below where we don't depend on dist/include
101 recurse_pre-export::
103 # For the binaries rule, not all the install manifests matter, so force only
104 # the interesting ones to be done.
105 recurse_pre-export:: install-manifests
106 binaries::
107 @$(MAKE) install-manifests install_manifests=dist/include
109 ifdef BUILD_VERBOSE_LOG
110 verbose_flag = -v
111 endif
113 recurse_artifact:
114 $(PYTHON3) $(topsrcdir)/mach --log-no-times artifact install$(if $(MOZ_ARTIFACT_BUILD_SYMBOLS), --symbols$(addprefix =,$(filter full,$(MOZ_ARTIFACT_BUILD_SYMBOLS)))) $(if $(ENABLE_TESTS),,--no-tests) $(verbose_flag)
116 ifdef MOZ_EME_WIN32_ARTIFACT
117 recurse_win32-artifact:
118 rm -rf $(DIST)/i686
119 $(PYTHON3) $(topsrcdir)/mach --log-no-times artifact install --job win32-opt --no-tests --distdir $(DIST)/i686 $(verbose_flag)
120 mv $(DIST)/i686/bin/* $(DIST)/i686
121 endif
123 ifdef MOZ_ANDROID_FAT_AAR_ARCHITECTURES
124 recurse_android-fat-aar-artifact:
125 $(call py_action,fat_aar,\
126 $(addprefix --armeabi-v7a $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_ARMEABI_V7A)) \
127 $(addprefix --arm64-v8a $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_ARM64_V8A)) \
128 $(addprefix --x86 $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_X86)) \
129 $(addprefix --x86-64 $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_X86_64)) \
130 --distdir $(abspath $(DIST)/fat-aar))
131 endif
133 ifeq ($(MOZ_BUILD_APP),mobile/android)
135 recurse_android-stage-package: stage-package
137 recurse_android-archive-geckoview:
138 GRADLE_INVOKED_WITHIN_MACH_BUILD=1 $(topsrcdir)/mach --log-no-times android archive-geckoview
139 endif
141 ifdef MOZ_WIDGET_TOOLKIT
142 ifdef ENABLE_TESTS
143 # Additional makefile targets to call automated test suites
144 include $(topsrcdir)/testing/testsuite-targets.mk
145 endif
146 endif
148 default all::
149 $(call BUILDSTATUS,TIERS $(TIERS) $(if $(MOZ_AUTOMATION),$(MOZ_AUTOMATION_TIERS)))
151 include $(topsrcdir)/config/rules.mk
153 ifdef SCCACHE_VERBOSE_STATS
154 default::
155 -$(CCACHE) --show-stats --stats-format=json > '$(UPLOAD_PATH)/sccache-stats.json'
156 @echo "===SCCACHE STATS==="
157 -$(CCACHE) --show-stats
158 @echo "==================="
159 endif
161 ifdef MOZ_CRASHREPORTER
162 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
164 endif
166 .PHONY: prepsymbolsarchive
167 prepsymbolsarchive:
168 echo packing symbols
169 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
171 ifndef MOZ_AUTOMATION
172 prepsymbolsarchive: recurse_syms
173 endif
175 .PHONY: symbolsfullarchive
176 symbolsfullarchive: prepsymbolsarchive
177 $(RM) '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).tar.zst'
178 $(call py_action,symbols_archive,'$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).tar.zst' \
179 $(abspath $(DIST)/crashreporter-symbols) \
180 --full-archive)
182 .PHONY: symbolsarchive
183 symbolsarchive: prepsymbolsarchive
184 $(RM) '$(DIST)/$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip'
185 $(call py_action,symbols_archive,'$(DIST)/$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip' \
186 $(abspath $(DIST)/crashreporter-symbols))
188 ifdef MOZ_CRASHREPORTER
189 # Set MOZ_ENABLE_FULL_SYMBOLS to enable generation and upload of the full
190 # crashreporter symbols archives
191 ifdef MOZ_ENABLE_FULL_SYMBOLS
192 buildsymbols: symbolsfullarchive symbolsarchive
193 else
194 buildsymbols: symbolsarchive
195 endif # MOZ_ENABLE_FULL_SYMBOLS
196 else
197 buildsymbols:
198 endif
200 uploadsymbols:
201 ifdef MOZ_CRASHREPORTER
202 $(PYTHON3) -u $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.py '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).tar.zst'
203 endif
205 .PHONY: package-generated-sources
206 package-generated-sources:
207 $(call py_action,package_generated_sources,'$(DIST)/$(PKG_PATH)$(GENERATED_SOURCE_FILE_PACKAGE)')
209 ifdef JS_STANDALONE
210 # Delegate js-specific rules to js
211 check-%:
212 $(MAKE) -C js/src $@
214 source-package install:
215 $(MAKE) -C js/src $@
217 # Every export rule depends on config/export, but the rule for config/export
218 # doesn't exist when building js non-standalone.
219 .PHONY: config/export
220 config/export:
222 endif
224 # There used to be build interdependencies here. They are now in config/recurse.mk