2022-11-01 20:24:01 +04:00

20 lines
451 B
Python

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