mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
25 lines
720 B
Text
25 lines
720 B
Text
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "PeerInfoRatingComponent",
|
|
module_name = "PeerInfoRatingComponent",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = [
|
|
"//submodules/Display",
|
|
"//submodules/ComponentFlow",
|
|
"//submodules/Components/MultilineTextComponent",
|
|
"//submodules/TelegramUI/Components/TextLoadingEffect",
|
|
"//submodules/Components/ComponentDisplayAdapters",
|
|
"//submodules/TooltipUI",
|
|
"//submodules/AccountContext",
|
|
"//submodules/UIKitRuntimeUtils",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|