Bug 1168570: Enable add-on signing support in Android. r=margaret

This commit is contained in:
Dave Townsend 2015-05-26 13:24:23 -07:00
parent da0cda9d7f
commit fcfa49bedf
2 changed files with 11 additions and 0 deletions

View File

@ -180,6 +180,8 @@ pref("xpinstall.whitelist.fileRequest", false);
pref("xpinstall.whitelist.add", "addons.mozilla.org");
pref("xpinstall.whitelist.add.180", "marketplace.firefox.com");
pref("xpinstall.signatures.required", false);
pref("extensions.enabledScopes", 1);
pref("extensions.autoupdate.enabled", true);
pref("extensions.autoupdate.interval", 86400);

View File

@ -106,3 +106,12 @@ fi
# Use the low-memory GC tuning.
export JS_GC_SMALL_CHUNK_SIZE=1
# Enable checking that add-ons are signed by the trusted root
MOZ_ADDON_SIGNING=1
if test "$MOZ_OFFICIAL_BRANDING"; then
if test "$MOZ_UPDATE_CHANNEL" = "beta" -o \
"$MOZ_UPDATE_CHANNEL" = "release"; then
MOZ_REQUIRE_SIGNING=1
fi
fi