mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
617 B
Python
21 lines
617 B
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "LocalizedPeerData",
|
|
module_name = "LocalizedPeerData",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
deps = [
|
|
"//submodules/TelegramCore:TelegramCore",
|
|
"//submodules/SyncCore:SyncCore",
|
|
"//submodules/Postbox:Postbox",
|
|
"//submodules/TelegramPresentationData:TelegramPresentationData",
|
|
"//submodules/TelegramUIPreferences:TelegramUIPreferences",
|
|
"//submodules/PhoneNumberFormat:PhoneNumberFormat",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|