summaryrefslogtreecommitdiffstats
path: root/platform/javascript/detect.py
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2022-05-25 14:19:49 +0200
committerRémi Verschelde <rverschelde@gmail.com>2022-05-25 14:19:49 +0200
commit3ff6d794c0aac0365f236cd078b5e5aeea0d996e (patch)
tree072126785fa039ec994754e156e956a02370e8d8 /platform/javascript/detect.py
parent42b48496dedf20d7dd43756efac4408e0a9c639f (diff)
downloadredot-engine-3ff6d794c0aac0365f236cd078b5e5aeea0d996e.tar.gz
HTML5: Enable mbedTLS module for Crypto object
Increases the size of the wasm by around 3% (~300-350 KiB). This enables using the Crypto object for hashing, signing and encryption, and therefore reduces the gap between the features of the HTML5 platform and other platforms. Closes https://github.com/godotengine/godot-proposals/issues/3574.
Diffstat (limited to 'platform/javascript/detect.py')
-rw-r--r--platform/javascript/detect.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/platform/javascript/detect.py b/platform/javascript/detect.py
index 709104c5ee..4a9652fc1c 100644
--- a/platform/javascript/detect.py
+++ b/platform/javascript/detect.py
@@ -48,11 +48,6 @@ def get_flags():
return [
("tools", False),
("builtin_pcre2_with_jit", False),
- # Disabling the mbedtls module 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_mbedtls_enabled", False),
("vulkan", False),
]