mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
29 lines
928 B
Python
29 lines
928 B
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
sgdeps = ["//Swiftgram/SGSimpleSettings:SGSimpleSettings"]
|
|
|
|
swift_library(
|
|
name = "TelegramStringFormatting",
|
|
module_name = "TelegramStringFormatting",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = sgdeps + [
|
|
"//submodules/TelegramCore:TelegramCore",
|
|
"//submodules/Display:Display",
|
|
"//submodules/PlatformRestrictionMatching:PlatformRestrictionMatching",
|
|
"//submodules/LocalizedPeerData:LocalizedPeerData",
|
|
"//submodules/TextFormat:TextFormat",
|
|
"//submodules/Markdown:Markdown",
|
|
"//submodules/TelegramUIPreferences:TelegramUIPreferences",
|
|
"//submodules/TelegramPresentationData:TelegramPresentationData",
|
|
"//submodules/AppBundle:AppBundle",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|