mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-24 17:09:43 +00:00 
			
		
		
		
	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.
		
			
				
	
	
		
			21 lines
		
	
	
	
		
			466 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			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",
 | |
|   ]
 | |
| }
 |