mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-07-23 19:50:47 +00:00
34 lines
1.0 KiB
Python
34 lines
1.0 KiB
Python
load("//Config:buck_rule_macros.bzl", "framework")
|
|
|
|
framework(
|
|
name = "TelegramCore",
|
|
srcs = glob([
|
|
"TelegramCore/*.swift",
|
|
"TelegramCore/*.m",
|
|
]),
|
|
headers = [
|
|
"TelegramCore/FormatPhoneNumber.h",
|
|
"TelegramCore/Crypto.h",
|
|
"TelegramCore/NetworkLogging.h",
|
|
"TelegramCore/Reachability.h",
|
|
],
|
|
exported_headers = [
|
|
"TelegramCore/FormatPhoneNumber.h",
|
|
"TelegramCore/Crypto.h",
|
|
"TelegramCore/NetworkLogging.h",
|
|
"TelegramCore/Reachability.h",
|
|
],
|
|
deps = [
|
|
"//submodules/libphonenumber:libphonenumber",
|
|
"//submodules/TelegramApi:TelegramApi",
|
|
"//submodules/MtProtoKit:MtProtoKit#shared",
|
|
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared",
|
|
"//submodules/Postbox:Postbox#shared",
|
|
"//submodules/CloudData:CloudData",
|
|
"//submodules/EncryptionProvider:EncryptionProvider",
|
|
],
|
|
frameworks = [
|
|
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
|
|
],
|
|
)
|