Bug 1558737 - Remove BUILD_FASTER define. r=nalexander

The last use of the define was removed in bug 1437942.

Differential Revision: https://phabricator.services.mozilla.com/D34669

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mike Hommey 2019-06-12 16:20:16 +00:00
Родитель 85e29d1e3b
Коммит 87bda34b48
4 изменённых файлов: 0 добавлений и 10 удалений

Просмотреть файл

@ -58,10 +58,6 @@ endif
.PHONY: FORCE
# Extra define to trigger some workarounds. We should strive to limit the
# use of those. As of writing the only one is in browser/locales/jar.mn.
ACDEFINES += -DBUILD_FASTER
# Files under the faster/ sub-directory, however, are not meant to use the
# fallback
$(TOPOBJDIR)/faster/%: ;

Просмотреть файл

@ -453,7 +453,6 @@ class CommonBackend(BuildBackend):
ab_cd = obj.config.substs['MOZ_UI_LOCALE'][0]
pp.context.update(
AB_CD=ab_cd,
BUILD_FASTER=1,
)
pp.out = JarManifestParser()
try:

Просмотреть файл

@ -694,10 +694,6 @@ class TupBackend(CommonBackend):
# TODO: AB_CD only exists in Makefiles at the moment.
acdefines_flags += ' -DAB_CD=en-US'
# Use BUILD_FASTER to avoid CXXFLAGS/CPPFLAGS in
# toolkit/content/buildconfig.html
acdefines_flags += ' -DBUILD_FASTER=1'
fh.write('MOZ_OBJ_ROOT = $(TUP_CWD)\n')
fh.write('DIST = $(MOZ_OBJ_ROOT)/dist\n')
fh.write('ACDEFINES = %s\n' % acdefines_flags)

Просмотреть файл

@ -74,7 +74,6 @@ class Daemon(object):
# http://searchfox.org/mozilla-central/rev/ad093e98f42338effe2e2513e26c3a311dd96422/config/faster/rules.mk#92-93
defines.update({
'AB_CD': 'en-US',
'BUILD_FASTER': '1',
})
return defines