Просмотр исходного кода

Merge pull request #16059 from eska014/html5-notls

Disable OpenSSL module in HTML5 platform by default
Rémi Verschelde 7 лет назад
Родитель
Сommit
8afe5b4d9f
1 измененных файлов с 5 добавлено и 0 удалено
  1. 5 0
      platform/javascript/detect.py

+ 5 - 0
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),
     ]