2023-04-18 18:33:35 +04:00

21 lines
463 B
Python

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