Files
2026-03-07 18:15:32 +01:00

19 lines
403 B
Python

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