mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 06:18:12 +00:00
18 lines
427 B
Text
18 lines
427 B
Text
source_set("Crypto") {
|
|
configs += [ "//Userland/Libraries/LibWeb:configs" ]
|
|
deps = [ "//Userland/Libraries/LibWeb:all_generated" ]
|
|
sources = [
|
|
"Crypto.cpp",
|
|
"Crypto.h",
|
|
"CryptoAlgorithms.cpp",
|
|
"CryptoAlgorithms.h",
|
|
"CryptoBindings.cpp",
|
|
"CryptoBindings.h",
|
|
"CryptoKey.cpp",
|
|
"CryptoKey.h",
|
|
"KeyAlgorithms.cpp",
|
|
"KeyAlgorithms.h",
|
|
"SubtleCrypto.cpp",
|
|
"SubtleCrypto.h",
|
|
]
|
|
}
|