2023-04-04 00:09:59 +04:00

24 lines
640 B
Python

load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "ActionPanelComponent",
module_name = "ActionPanelComponent",
srcs = glob([
"Sources/**/*.swift",
]),
copts = [
"-warnings-as-errors",
],
deps = [
"//submodules/Display:Display",
"//submodules/TelegramPresentationData:TelegramPresentationData",
"//submodules/ComponentFlow",
"//submodules/AnimatedCountLabelNode",
"//submodules/Components/ComponentDisplayAdapters",
"//submodules/AppBundle",
],
visibility = [
"//visibility:public",
],
)