mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
457 B
Python
21 lines
457 B
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "VolumeButtons",
|
|
module_name = "VolumeButtons",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = [
|
|
"//submodules/SSignalKit/SwiftSignalKit",
|
|
"//submodules/LegacyComponents",
|
|
"//submodules/AccountContext",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|