summaryrefslogtreecommitdiff
path: root/platform/javascript/detect.py
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-01-25 09:14:50 +0100
committerGitHub <noreply@github.com>2018-01-25 09:14:50 +0100
commit8afe5b4d9fa50d807f79006ab457c41e4de83247 (patch)
tree147bac87b7890866b9e7d1ef8ab8c148c9784194 /platform/javascript/detect.py
parentf2e3825616ce67078159adc3d591e4c6e368983a (diff)
parent4a3aaaf27666d6eed2cf3bf41e1adddfdedb2dfc (diff)
Merge pull request #16059 from eska014/html5-notls
Disable OpenSSL module in HTML5 platform by default
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r--platform/javascript/detect.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py
index 8c7a904bca..74d6536343 100644
--- a/platform/javascript/detect.py
+++ b/platform/javascript/detect.py
@@ -28,6 +28,11 @@ def get_flags():
return [
('tools', False),
('module_theora_enabled', False),
+ # Disabling the OpenSSL module noticeably reduces file size.
+ # The module has little use due to the limited networking functionality
+ # in this platform. For the available networking methods, the browser
+ # manages TLS.
+ ('module_openssl_enabled', False),
]