mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
The `import Postbox` line and `//submodules/Postbox` BUILD dep were unused — no Postbox types or APIs are referenced in the module. Removing both. Behavior-preserving. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
27 lines
813 B
Text
27 lines
813 B
Text
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "PromptUI",
|
|
module_name = "PromptUI",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = [
|
|
"//submodules/SSignalKit/SwiftSignalKit",
|
|
"//submodules/AsyncDisplayKit",
|
|
"//submodules/Display",
|
|
"//submodules/TelegramCore",
|
|
"//submodules/AccountContext",
|
|
"//submodules/TelegramPresentationData",
|
|
"//submodules/TelegramStringFormatting",
|
|
"//submodules/ComponentFlow",
|
|
"//submodules/TelegramUI/Components/AlertComponent",
|
|
"//submodules/TelegramUI/Components/AlertComponent/AlertMultilineInputFieldComponent",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|