[tor-commits] [tor-browser/tor-browser-68.1.0esr-9.0-1] Bug 25741 - TBA: Disable features at compile-time

gk at torproject.org gk at torproject.org
Sat Aug 31 19:46:16 UTC 2019


commit 91d7eba5e984f19d8e3af209e33f571c78001131
Author: Matthew Finkel <Matthew.Finkel at gmail.com>
Date:   Mon Apr 9 19:48:12 2018 +0000

    Bug 25741 - TBA: Disable features at compile-time
    
    MOZ_NATIVE_DEVICES for casting and the media player
    MOZ_TELEMETRY_REPORTING for telemetry
    MOZ_DATA_REPORTING for all data reporting preferences (crashreport, telemetry, geo)
---
 mobile/android/confvars.sh | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/mobile/android/confvars.sh b/mobile/android/confvars.sh
index 77191834d240..e2fcd2f0bb4c 100644
--- a/mobile/android/confvars.sh
+++ b/mobile/android/confvars.sh
@@ -30,9 +30,22 @@ MOZ_ANDROID_BROWSER_INTENT_CLASS=org.mozilla.gecko.BrowserApp
 
 MOZ_NO_SMART_CARDS=1
 
+# Adds MIME-type support for raw video
 MOZ_RAW=1
 
 # use custom widget for html:select
 MOZ_USE_NATIVE_POPUP_WINDOWS=1
 
 MOZ_APP_ID={aa3c5121-dab2-40e2-81ca-7ea25febc110}
+
+### Tor Browser for Android ###
+
+# Disables support at compile-time for casting (Mozilla Media Manager)
+# and prevents dependency on Google Play Services support
+unset MOZ_NATIVE_DEVICES
+
+# Disable telemetry at compile-time
+unset MOZ_TELEMETRY_REPORTING
+
+# Disable data reporting at compile-time
+unset MOZ_DATA_REPORTING





More information about the tor-commits mailing list