Bug 1517200 [wpt PR 14691] - Less restrictive internal column count limit., a=testonly
[gecko.git] / Makefile.in
blob502ca0543f94eed90e16922bc65e7582dbe71e16
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 GARBAGE_DIRS += _javagen _profile staticlib
27 DIST_GARBAGE = config.cache config.log config.status* config-defs.h \
28 config/autoconf.mk \
29 mozilla-config.h \
30 netwerk/necko-config.h xpcom/xpcom-config.h xpcom/xpcom-private.h \
31 .mozconfig.mk
33 ifndef MOZ_PROFILE_USE
34 # Automation builds should always have a new buildid, but for the sake of not
35 # re-linking libxul on every incremental build we do not enforce this for
36 # developer builds. Tests always need a new buildid as well.
37 ifneq (,$(MOZ_AUTOMATION)$(MOZ_BUILD_DATE)$(TEST_MOZBUILD))
38 $(MDDEPDIR)/buildid.h.stub $(MDDEPDIR)/source-repo.h.stub: FORCE
39 endif
40 # Additionally, provide a dummy target during tests, because
41 # faster/rules.mk will expect these targets to exist.
42 ifdef TEST_MOZBUILD
43 source-repo.h: $(MDDEPDIR)/source-repo.h.stub
44 buildid.h: $(MDDEPDIR)/buildid.h.stub
45 endif
46 endif
48 BUILD_BACKEND_FILES := $(addprefix backend.,$(addsuffix Backend,$(BUILD_BACKENDS)))
50 ifndef TEST_MOZBUILD
51 ifndef MOZ_PROFILE_USE
52 # We need to explicitly put BUILD_BACKEND_FILES here otherwise the rule in
53 # rules.mk doesn't run early enough.
54 $(TIERS) binaries:: CLOBBER $(BUILD_BACKEND_FILES)
55 endif
56 endif
58 ifdef JS_STANDALONE
59 .PHONY: CLOBBER
60 CLOBBER:
61 else
62 CLOBBER: $(topsrcdir)/CLOBBER
63 @echo 'STOP! The CLOBBER file has changed.'
64 @echo 'Please run the build through "mach build".'
65 @exit 1
66 endif
68 # Regenerate the build backend if it is out of date. We only have this rule in
69 # this main make file because having it in rules.mk and applied to partial tree
70 # builds resulted in a world of hurt. Gory details are in bug 877308.
72 # The mach build driver will ensure the backend is up to date for partial tree
73 # builds. This cleanly avoids most of the pain.
75 ifndef TEST_MOZBUILD
77 .PHONY: backend
78 backend: $(BUILD_BACKEND_FILES)
80 include $(topsrcdir)/build/rebuild-backend.mk
82 Makefile: $(BUILD_BACKEND_FILES)
83 @$(TOUCH) $@
85 default:: $(BUILD_BACKEND_FILES)
86 endif
88 install_manifests := \
89 $(addprefix dist/,branding include public private xpi-stage) \
90 _tests \
91 $(NULL)
92 # Skip the dist/bin install manifest when using the hybrid
93 # FasterMake/RecursiveMake backend. This is a hack until bug 1241744 moves
94 # xpidl handling to FasterMake in that case, mechanically making the dist/bin
95 # install manifest non-existent (non-existent manifests being skipped)
96 ifeq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
97 install_manifests += dist/bin
98 endif
99 install_manifest_depends = \
100 CLOBBER \
101 $(BUILD_BACKEND_FILES) \
102 $(NULL)
104 .PHONY: install-manifests
105 install-manifests: $(addprefix install-,$(install_manifests))
107 # If we're using the hybrid FasterMake/RecursiveMake backend, we want
108 # to recurse in the faster/ directory in parallel of install manifests.
109 ifneq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
110 install-manifests: faster
111 .PHONY: faster
112 faster:
113 $(MAKE) -C faster FASTER_RECURSIVE_MAKE=1
114 endif
116 .PHONY: $(addprefix install-,$(install_manifests))
117 $(addprefix install-,$(install_manifests)): install-%: $(install_manifest_depends)
118 ifneq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
119 @# If we're using the hybrid FasterMake/RecursiveMake backend, we want
120 @# to ensure the FasterMake end doesn't have install manifests for the
121 @# same directory, because that would blow up
122 $(if $(wildcard _build_manifests/install/$(subst /,_,$*)),$(if $(wildcard faster/install_$(subst /,_,$*)*),$(error FasterMake and RecursiveMake ends of the hybrid build system want to handle $*)))
123 endif
124 $(addprefix $(call py_action,process_install_manifest,--track install_$(subst /,_,$*).track $*) ,$(wildcard _build_manifests/install/$(subst /,_,$*)))
126 # Dummy wrapper rule to allow the faster backend to piggy back
127 $(addprefix install-,$(subst /,_,$(filter dist/%,$(install_manifests)))): install-dist_%: install-dist/% ;
129 .PHONY: install-tests
130 install-tests: install-test-files
132 .PHONY: install-test-files
133 install-test-files:
134 $(call py_action,process_install_manifest,--track install__test_files.track _tests _build_manifests/install/_test_files)
136 include $(topsrcdir)/build/moz-automation.mk
138 # dist and _tests should be purged during cleaning. However, we don't want them
139 # purged during PGO builds because they contain some auto-generated files.
140 ifneq ($(filter-out maybe_clobber_profiledbuild,$(MAKECMDGOALS)),)
141 GARBAGE_DIRS += dist _tests
142 endif
144 # Dummy rule for the cases below where we don't depend on dist/include
145 recurse_pre-export::
147 # Windows PGO builds don't perform a clean before the 2nd pass. So, we want
148 # to preserve content for the 2nd pass on Windows. Everywhere else, we always
149 # process the install manifests as part of export.
150 # For the binaries rule, not all the install manifests matter, so force only
151 # the interesting ones to be done.
152 ifdef MOZ_PROFILE_USE
153 ifndef NO_PROFILE_GUIDED_OPTIMIZE
154 ifneq ($(OS_ARCH)_$(GNU_CC), WINNT_)
155 recurse_pre-export:: install-manifests
156 binaries::
157 @$(MAKE) install-manifests install_manifests=dist/include
158 endif
159 endif
160 else # !MOZ_PROFILE_USE (normal build)
161 recurse_pre-export:: install-manifests
162 binaries::
163 @$(MAKE) install-manifests install_manifests=dist/include
164 endif
166 recurse_artifact:
167 $(topsrcdir)/mach --log-no-times artifact install
169 ifdef MOZ_WIDGET_TOOLKIT
170 ifdef ENABLE_TESTS
171 # Additional makefile targets to call automated test suites
172 include $(topsrcdir)/testing/testsuite-targets.mk
173 endif
174 endif
176 default all::
177 $(call BUILDSTATUS,TIERS $(TIERS) $(if $(MOZ_AUTOMATION),$(MOZ_AUTOMATION_TIERS)))
179 # PGO build target.
180 profiledbuild::
181 $(call BUILDSTATUS,TIERS pgo_profile_generate pgo_package pgo_profile pgo_clobber pgo_profile_use)
182 $(call BUILDSTATUS,TIER_START pgo_profile_generate)
183 $(MAKE) default MOZ_PROFILE_GENERATE=1
184 $(call BUILDSTATUS,TIER_FINISH pgo_profile_generate)
185 $(call BUILDSTATUS,TIER_START pgo_package)
186 $(MAKE) package MOZ_INTERNAL_SIGNING_FORMAT= MOZ_EXTERNAL_SIGNING_FORMAT=
187 rm -f jarlog/en-US.log
188 $(call BUILDSTATUS,TIER_FINISH pgo_package)
189 $(call BUILDSTATUS,TIER_START pgo_profile)
190 JARLOG_FILE=jarlog/en-US.log $(PYTHON) $(topsrcdir)/build/pgo/profileserver.py
191 $(call BUILDSTATUS,TIER_FINISH pgo_profile)
192 $(call BUILDSTATUS,TIER_START pgo_clobber)
193 $(MAKE) maybe_clobber_profiledbuild
194 $(call BUILDSTATUS,TIER_FINISH pgo_clobber)
195 $(call BUILDSTATUS,TIER_START pgo_profile_use)
196 $(MAKE) default MOZ_PROFILE_USE=1 $(if $(CLANG_CL),MOZ_PROFILE_ORDER_FILE=$(topobjdir)/cygprofile.txt)
197 $(call BUILDSTATUS,TIER_FINISH pgo_profile_use)
199 # Change default target to PGO build if PGO is enabled.
200 ifdef MOZ_PGO
201 ifdef COMPILE_ENVIRONMENT
202 # If one of these is already set in addition to PGO we are doing a single phase
203 # of PGO in isolation, so don't override the default target.
204 ifeq (,$(MOZ_PROFILE_GENERATE)$(MOZ_PROFILE_USE))
205 OVERRIDE_DEFAULT_GOAL := profiledbuild
206 endif
207 endif
208 endif
210 include $(topsrcdir)/config/rules.mk
212 ifdef SCCACHE_VERBOSE_STATS
213 default::
214 -$(CCACHE) --show-stats --stats-format=json > sccache-stats.json
215 @echo "===SCCACHE STATS==="
216 -$(CCACHE) --show-stats
217 @echo "==================="
218 endif
220 distclean::
221 $(RM) $(DIST_GARBAGE)
223 ifdef MOZ_CRASHREPORTER
224 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
226 endif
228 .PHONY: prepsymbolsarchive
229 prepsymbolsarchive:
230 echo packing symbols
231 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
233 ifndef MOZ_AUTOMATION
234 prepsymbolsarchive: recurse_syms
235 endif
237 .PHONY: symbolsfullarchive
238 symbolsfullarchive: prepsymbolsarchive
239 $(RM) '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip'
240 $(call py_action,symbols_archive,'$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip' \
241 $(abspath $(DIST)/crashreporter-symbols) \
242 --full-archive)
244 .PHONY: symbolsarchive
245 symbolsarchive: prepsymbolsarchive
246 $(RM) '$(DIST)/$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip'
247 $(call py_action,symbols_archive,'$(DIST)/$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip' \
248 $(abspath $(DIST)/crashreporter-symbols))
250 ifdef MOZ_CRASHREPORTER
251 # Set MOZ_DISABLE_FULL_SYMBOLS to disable generation and upload of the full
252 # crashreporter symbols archives
253 ifdef MOZ_DISABLE_FULL_SYMBOLS
254 buildsymbols: symbolsarchive
255 else
256 buildsymbols: symbolsfullarchive symbolsarchive
257 endif # MOZ_DISABLE_FULL_SYMBOLS
258 else
259 buildsymbols:
260 endif
262 uploadsymbols:
263 ifdef MOZ_CRASHREPORTER
264 $(PYTHON) -u $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.py '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip'
265 endif
267 .PHONY: update-packaging
268 update-packaging:
269 $(MAKE) -C tools/update-packaging
271 .PHONY: package-generated-sources
272 package-generated-sources:
273 $(call py_action,package_generated_sources,'$(DIST)/$(PKG_PATH)$(GENERATED_SOURCE_FILE_PACKAGE)')
275 #XXX: this is a hack, since we don't want to clobber for MSVC
276 # PGO support, but we can't do this test in client.mk
277 # No point in clobbering if PGO has been explicitly disabled.
278 ifdef NO_PROFILE_GUIDED_OPTIMIZE
279 maybe_clobber_profiledbuild:
280 else
281 ifneq ($(CC_TYPE),msvc)
282 maybe_clobber_profiledbuild: clean
283 ifneq (,$(findstring clang,$(CC_TYPE)))
284 $(LLVM_PROFDATA) merge -o $(DEPTH)/merged.profdata $(DEPTH)/*.profraw
285 endif
286 else
287 maybe_clobber_profiledbuild:
288 $(RM) $(DIST)/bin/*.pgc
289 find $(DIST)/$(MOZ_APP_NAME) -name '*.pgc' -exec mv {} $(DIST)/bin \;
290 endif # msvc
291 endif # NO_PROFILE_GUIDED_OPTIMIZE
293 .PHONY: maybe_clobber_profiledbuild
295 ifdef JS_STANDALONE
296 # Delegate js-specific rules to js
297 check-%:
298 $(MAKE) -C js/src $@
300 source-package install:
301 $(MAKE) -C js/src $@
303 # Every export rule depends on config/export, but the rule for config/export
304 # doesn't exist when building js non-standalone.
305 .PHONY: config/export
306 config/export:
308 endif
310 # There used to be build interdependencies here. They are now in config/recurse.mk