2025-07-05 02:43:30 +03:00

22 lines
474 B
Python

load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "DeviceModel",
module_name = "DeviceModel",
srcs = glob([
"Sources/**/*.swift",
]),
copts = [
"-warnings-as-errors",
],
deps = [
# MARK: Swiftgram
# "//submodules/SSignalKit/SwiftSignalKit",
# "//submodules/LegacyComponents",
# "//submodules/AccountContext",
],
visibility = [
"//visibility:public",
],
)