Bug 1277965 Enable MOZ_ADDON_SIGNING r?kmag draft
authorAndrew Swan <aswan@mozilla.com>
Mon, 06 Jun 2016 12:23:14 -0700
changeset 375835 ccc008b906b6678ae6b70cda0554eb022ac77dc5
parent 374456 92e0c73391e71a400e2c6674bca5ca70804ab081
child 522977 332955a438f9d7f39377ce06e33fe9fbd6e5f7fe
push id20391
push useraswan@mozilla.com
push dateMon, 06 Jun 2016 19:25:19 +0000
reviewerskmag
bugs1277965
milestone49.0a1
Bug 1277965 Enable MOZ_ADDON_SIGNING r?kmag MozReview-Commit-ID: L6VXf9veakc
browser/confvars.sh
mobile/android/confvars.sh
--- a/browser/confvars.sh
+++ b/browser/confvars.sh
@@ -51,10 +51,13 @@ MOZ_APP_STATIC_INI=1
 MOZ_WEBGL_CONFORMANT=1
 # Enable navigator.mozPay
 MOZ_PAY=1
 # Enable activities. These are used for FxOS developers currently.
 MOZ_ACTIVITIES=1
 MOZ_JSDOWNLOADS=1
 MOZ_RUST_MP4PARSE=1
 
+# Enable checking that add-ons are signed by the trusted root
+MOZ_ADDON_SIGNING=1
+
 # Include the DevTools client, not just the server (which is the default)
 MOZ_DEVTOOLS=all
--- a/mobile/android/confvars.sh
+++ b/mobile/android/confvars.sh
@@ -59,8 +59,11 @@ fi
 # Mark as WebGL conformant
 MOZ_WEBGL_CONFORMANT=1
 
 # Build and package the install bouncer APK by default.
 MOZ_ANDROID_PACKAGE_INSTALL_BOUNCER=1
 
 # 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