Ali c87725579d Revert "Temporarily disable -warnings-as-errors, investigate whole-module build"
This reverts commit 80380d26aa351bd5ad518750d56463a9b18c4aeb.
2021-08-04 20:45:08 +02:00

18 lines
332 B
Python

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