mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-25 17:25:08 +02:00
This was previously a depdency due to the use of Crypto::get_secure_random for the nonce used for an opaque origin. Now that this has been moved to AK, we no longer have any dependency on LibCrypto.
24 lines
500 B
CMake
24 lines
500 B
CMake
include(public_suffix)
|
|
|
|
set(SOURCES
|
|
Host.cpp
|
|
Origin.cpp
|
|
Parser.cpp
|
|
Site.cpp
|
|
URL.cpp
|
|
${PUBLIC_SUFFIX_SOURCES}
|
|
Pattern/Canonicalization.cpp
|
|
Pattern/Component.cpp
|
|
Pattern/ConstructorStringParser.cpp
|
|
Pattern/Init.cpp
|
|
Pattern/Options.cpp
|
|
Pattern/Part.cpp
|
|
Pattern/Pattern.cpp
|
|
Pattern/PatternParser.cpp
|
|
Pattern/String.cpp
|
|
Pattern/Tokenizer.cpp
|
|
)
|
|
|
|
ladybird_lib(LibURL url)
|
|
target_link_libraries(LibURL PRIVATE LibUnicode LibTextCodec LibRegex)
|