[tor-commits] [tor-browser/geckoview-94.0-11.0-1] Bug 16439: Remove screencasting code
    boklm at torproject.org 
    boklm at torproject.org
       
    Fri Nov 26 10:40:26 UTC 2021
    
    
  
commit 1686c29c4e4387db8979925d846a5602385396ed
Author: Kathy Brade <brade at pearlcrescent.com>
Date:   Wed Jun 24 11:01:11 2015 -0400
    Bug 16439: Remove screencasting code
    
    We avoid including the screencasting code on mobile (it got ripped out
    for desktop in bug 1393582) by simply excluding the related JS modules
    from Tor Browser.
---
 toolkit/modules/moz.build | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build
index c6b2c421f447..9d349d9f3394 100644
--- a/toolkit/modules/moz.build
+++ b/toolkit/modules/moz.build
@@ -255,10 +255,11 @@ if "Android" != CONFIG["OS_TARGET"]:
     ]
 else:
     DEFINES["ANDROID"] = True
-    EXTRA_JS_MODULES += [
-        "secondscreen/RokuApp.jsm",
-        "secondscreen/SimpleServiceDiscovery.jsm",
-    ]
+    if not CONFIG["TOR_BROWSER_VERSION"]:
+        EXTRA_JS_MODULES += [
+            "secondscreen/RokuApp.jsm",
+            "secondscreen/SimpleServiceDiscovery.jsm",
+        ]
 
 
 if CONFIG["MOZ_WIDGET_TOOLKIT"] == "windows":
    
    
More information about the tor-commits
mailing list