mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 13:35:19 +00:00
24 lines
623 B
Python
24 lines
623 B
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "SGAPIWebSettings",
|
|
module_name = "SGAPIWebSettings",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = [
|
|
"//Swiftgram/SGAPI:SGAPI",
|
|
"//Swiftgram/SGAPIToken:SGAPIToken",
|
|
"//Swiftgram/SGLogging:SGLogging",
|
|
"//Swiftgram/SGSimpleSettings:SGSimpleSettings",
|
|
"//submodules/AccountContext:AccountContext",
|
|
"//submodules/TelegramCore:TelegramCore",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|