Files
2026-03-07 18:19:16 +01:00

21 lines
538 B
Python

load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "SGGHSettings",
module_name = "SGGHSettings",
srcs = glob([
"Sources/**/*.swift",
]),
copts = [
"-warnings-as-errors",
],
deps = [
"//Swiftgram/SGGHSettingsScheme:SGGHSettingsScheme",
"//Swiftgram/SGLogging:SGLogging",
"//submodules/AccountContext:AccountContext",
"//submodules/TelegramCore:TelegramCore",
],
visibility = [
"//visibility:public",
],
)