Bug 1645920 [wpt PR 24157] - [AspectRatio] Make intrinsic sizes respect aspect-ratio...
[gecko.git] / Makefile.in
bloba2fdd2f8be276df0060c11bf834cbe8d9f66eb8e
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 # To share compilation of dependencies, Rust libraries all set their
28 # CARGO_TARGET_DIR as a subdirectory of topobjdir. Normally, we would add
29 # RUST*TARGET to GARBAGE_DIRS for those directories building Rust libraries.
30 # But the directories building Rust libraries don't actually have
31 # subdirectories to remove. So we add to GARBAGE_DIRS once here, globally,
32 # for it to have the desired effect.
33 GARBAGE_DIRS += $(RUST_TARGET)
34 GARBAGE_DIRS += config.statusd
35 DIST_GARBAGE = config.cache config.log config.status config-defs.h \
36 config/autoconf.mk \
37 mozilla-config.h \
38 xpcom/xpcom-config.h xpcom/xpcom-private.h \
39 .mozconfig.mk
41 ifneq (mobile/android,$(MOZ_BUILD_APP))
42 $(MDDEPDIR)/buildid.h.stub $(MDDEPDIR)/source-repo.h.stub: FORCE
43 endif
44 source-repo.h: $(MDDEPDIR)/source-repo.h.stub
45 buildid.h: $(MDDEPDIR)/buildid.h.stub
47 BUILD_BACKEND_FILES := $(addprefix backend.,$(addsuffix Backend,$(BUILD_BACKENDS)))
49 ifndef TEST_MOZBUILD
50 # We need to explicitly put BUILD_BACKEND_FILES here otherwise the rule in
51 # rules.mk doesn't run early enough.
52 $(RUNNABLE_TIERS) binaries:: CLOBBER $(BUILD_BACKEND_FILES)
53 endif
55 ifdef JS_STANDALONE
56 .PHONY: CLOBBER
57 CLOBBER:
58 else
59 CLOBBER: $(topsrcdir)/CLOBBER
60 @echo 'STOP! The CLOBBER file has changed.'
61 @echo 'Please run the build through "mach build".'
62 @exit 1
63 endif
65 install_manifests := \
66 $(addprefix dist/,branding include public private xpi-stage) \
67 _tests \
68 $(NULL)
69 # Skip the dist/bin install manifest when using the hybrid
70 # FasterMake/RecursiveMake backend. This is a hack until bug 1241744 moves
71 # xpidl handling to FasterMake in that case, mechanically making the dist/bin
72 # install manifest non-existent (non-existent manifests being skipped)
73 ifeq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
74 install_manifests += dist/bin
75 endif
76 install_manifest_depends = \
77 CLOBBER \
78 $(BUILD_BACKEND_FILES) \
79 $(NULL)
81 .PHONY: install-manifests
82 install-manifests: $(addprefix install-,$(install_manifests))
84 # If we're using the hybrid FasterMake/RecursiveMake backend, we want
85 # to recurse in the faster/ directory in parallel of install manifests.
86 ifneq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
87 install-manifests: faster
88 .PHONY: faster
89 faster:
90 $(MAKE) -C faster FASTER_RECURSIVE_MAKE=1
91 endif
93 .PHONY: $(addprefix install-,$(install_manifests))
94 $(addprefix install-,$(install_manifests)): install-%: $(install_manifest_depends)
95 ifneq (,$(filter FasterMake+RecursiveMake,$(BUILD_BACKENDS)))
96 @# If we're using the hybrid FasterMake/RecursiveMake backend, we want
97 @# to ensure the FasterMake end doesn't have install manifests for the
98 @# same directory, because that would blow up
99 $(if $(wildcard _build_manifests/install/$(subst /,_,$*)),$(if $(wildcard faster/install_$(subst /,_,$*)*),$(error FasterMake and RecursiveMake ends of the hybrid build system want to handle $*)))
100 endif
101 $(addprefix $(call py_action,process_install_manifest,--track install_$(subst /,_,$*).track $*) ,$(wildcard _build_manifests/install/$(subst /,_,$*)))
103 # Dummy wrapper rule to allow the faster backend to piggy back
104 $(addprefix install-,$(subst /,_,$(filter dist/%,$(install_manifests)))): install-dist_%: install-dist/% ;
106 .PHONY: install-tests
107 install-tests: install-test-files
109 .PHONY: install-test-files
110 install-test-files:
111 $(call py_action,process_install_manifest,--track install__test_files.track _tests _build_manifests/install/_test_files)
113 include $(topsrcdir)/build/moz-automation.mk
115 # dist and _tests should be purged during cleaning.
116 GARBAGE_DIRS += dist _tests
118 # Dummy rule for the cases below where we don't depend on dist/include
119 recurse_pre-export::
121 # For the binaries rule, not all the install manifests matter, so force only
122 # the interesting ones to be done.
123 recurse_pre-export:: install-manifests
124 binaries::
125 @$(MAKE) install-manifests install_manifests=dist/include
127 # Host binaries are not produced for macOS consumers: that is, there's
128 # no macOS-hosted job to produce them at this time. Therefore we
129 # enable --host-bins only for automation builds, which only require Linux and
130 # Windows host binaries.
131 recurse_artifact:
132 $(topsrcdir)/mach --log-no-times artifact install$(if $(MOZ_ARTIFACT_BUILD_SYMBOLS), --symbols$(addprefix =,$(filter full,$(MOZ_ARTIFACT_BUILD_SYMBOLS))))$(if $(MOZ_AUTOMATION), --host-bins)
134 ifdef MOZ_EME_WIN32_ARTIFACT
135 recurse_win32-artifact:
136 rm -rf $(DIST)/i686
137 $(topsrcdir)/mach --log-no-times artifact install --job $(if $(MOZ_PGO),win32-pgo,win32-opt) --no-tests --distdir $(DIST)/i686
138 mv $(DIST)/i686/bin/* $(DIST)/i686
139 endif
141 ifdef MOZ_ANDROID_FAT_AAR_ARCHITECTURES
142 recurse_android-fat-aar-artifact:
143 $(call py_action,fat_aar,\
144 $(addprefix --armeabi-v7a $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_ARMEABI_V7A)) \
145 $(addprefix --arm64-v8a $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_ARM64_V8A)) \
146 $(addprefix --x86 $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_X86)) \
147 $(addprefix --x86-64 $(MOZ_FETCHES_DIR)/,$(MOZ_ANDROID_FAT_AAR_X86_64)) \
148 --distdir $(abspath $(DIST)/fat-aar))
149 endif
151 ifeq ($(MOZ_BUILD_APP),mobile/android)
153 recurse_android-stage-package: stage-package
155 recurse_android-archive-geckoview:
156 GRADLE_INVOKED_WITHIN_MACH_BUILD=1 $(topsrcdir)/mach --log-no-times android archive-geckoview
157 endif
159 ifdef MOZ_WIDGET_TOOLKIT
160 ifdef ENABLE_TESTS
161 # Additional makefile targets to call automated test suites
162 include $(topsrcdir)/testing/testsuite-targets.mk
163 endif
164 endif
166 default all::
167 $(call BUILDSTATUS,TIERS $(TIERS) $(if $(MOZ_AUTOMATION),$(MOZ_AUTOMATION_TIERS)))
169 include $(topsrcdir)/config/rules.mk
171 ifdef SCCACHE_VERBOSE_STATS
172 default::
173 -$(CCACHE) --show-stats --stats-format=json > sccache-stats.json
174 @echo "===SCCACHE STATS==="
175 -$(CCACHE) --show-stats
176 @echo "==================="
177 endif
179 distclean::
180 $(RM) $(DIST_GARBAGE)
182 ifdef MOZ_CRASHREPORTER
183 include $(topsrcdir)/toolkit/mozapps/installer/package-name.mk
185 endif
187 .PHONY: prepsymbolsarchive
188 prepsymbolsarchive:
189 echo packing symbols
190 $(NSINSTALL) -D $(DIST)/$(PKG_PATH)
192 ifndef MOZ_AUTOMATION
193 prepsymbolsarchive: recurse_syms
194 endif
196 .PHONY: symbolsfullarchive
197 symbolsfullarchive: prepsymbolsarchive
198 $(RM) '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip'
199 $(call py_action,symbols_archive,'$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip' \
200 $(abspath $(DIST)/crashreporter-symbols) \
201 --full-archive)
203 .PHONY: symbolsarchive
204 symbolsarchive: prepsymbolsarchive
205 $(RM) '$(DIST)/$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip'
206 $(call py_action,symbols_archive,'$(DIST)/$(PKG_PATH)$(SYMBOL_ARCHIVE_BASENAME).zip' \
207 $(abspath $(DIST)/crashreporter-symbols))
209 ifdef MOZ_CRASHREPORTER
210 # Set MOZ_DISABLE_FULL_SYMBOLS to disable generation and upload of the full
211 # crashreporter symbols archives
212 ifdef MOZ_DISABLE_FULL_SYMBOLS
213 buildsymbols: symbolsarchive
214 else
215 buildsymbols: symbolsfullarchive symbolsarchive
216 endif # MOZ_DISABLE_FULL_SYMBOLS
217 else
218 buildsymbols:
219 endif
221 uploadsymbols:
222 ifdef MOZ_CRASHREPORTER
223 $(PYTHON3) -u $(topsrcdir)/toolkit/crashreporter/tools/upload_symbols.py '$(DIST)/$(PKG_PATH)$(SYMBOL_FULL_ARCHIVE_BASENAME).zip'
224 endif
226 .PHONY: update-packaging
227 update-packaging:
228 $(MAKE) -C tools/update-packaging
230 .PHONY: package-generated-sources
231 package-generated-sources:
232 $(call py_action,package_generated_sources,'$(DIST)/$(PKG_PATH)$(GENERATED_SOURCE_FILE_PACKAGE)')
234 ifdef JS_STANDALONE
235 # Delegate js-specific rules to js
236 check-%:
237 $(MAKE) -C js/src $@
239 source-package install:
240 $(MAKE) -C js/src $@
242 # Every export rule depends on config/export, but the rule for config/export
243 # doesn't exist when building js non-standalone.
244 .PHONY: config/export
245 config/export:
247 endif
249 # There used to be build interdependencies here. They are now in config/recurse.mk