2023-10-03 23:20:45 +04:00

22 lines
505 B
Python

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