ladybird/Meta/gn/secondary/Userland/Libraries/LibTLS/BUILD.gn
Andrew Kaster ffd600a7f5 Meta+RequestServer: Remove local download of ca-certificates
We haven't required a local copy of the ca-certificates since switching
to OpenSSL as the backend for TLS. Remove the script to download the
PEM file, and update the tests to use the system's CA certificates.
2025-07-07 09:10:05 +02:00

21 lines
466 B
Text

shared_library("LibTLS") {
output_name = "tls"
include_dirs = [ "//Userland/Libraries" ]
cflags_cc = [ "-Wvla" ]
sources = [
"Certificate.cpp",
"Handshake.cpp",
"HandshakeCertificate.cpp",
"HandshakeClient.cpp",
"HandshakeServer.cpp",
"Record.cpp",
"Socket.cpp",
"TLSv12.cpp",
]
deps = [
"//AK",
"//Userland/Libraries/LibCore",
"//Userland/Libraries/LibCrypto",
"//Userland/Libraries/LibFileSystem",
]
}