2022-06-06 18:25:58 +04:00

18 lines
319 B
Python
Vendored

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