2022-06-19 21:24:54 +01:00

21 lines
536 B
Python

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