Bug 1163046: Force AMO signature requirements on in branded beta and release builds. r=gps

--HG--
extra : rebase_source : 108e7737e8979e545f4721ef3fa310b481de9963
This commit is contained in:
Dave Townsend 2015-05-11 12:24:45 -07:00
parent 89f4e5fa00
commit 9291a55b7e

View File

@ -33,3 +33,7 @@ DEFINES['MOZ_EXTENSIONS_DB_SCHEMA'] = 17
# Additional debugging info is exposed in debug builds
if CONFIG['MOZ_EM_DEBUG']:
DEFINES['MOZ_EM_DEBUG'] = 1
# Add-on signing cannot be preffed off in official beta, release or esr builds
if CONFIG['MOZ_UPDATE_CHANNEL'] in ('beta', 'release', 'esr') and CONFIG['MOZ_OFFICIAL_BRANDING']:
DEFINES['MOZ_REQUIRE_SIGNING'] = 1