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 = [ "//submodules/Display" ], visibility = [ "//visibility:public", ], )