mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
29 lines
504 B
Python
29 lines
504 B
Python
|
|
objc_library(
|
|
name = "PKCS",
|
|
enable_modules = True,
|
|
module_name = "PKCS",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.h",
|
|
]),
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
copts = [
|
|
"-DTELEGRAM_USE_BORINGSSL=1",
|
|
],
|
|
deps = [
|
|
"//third-party/boringssl:crypto",
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|