mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2026-01-06 05:02:54 +00:00
20 lines
402 B
Python
20 lines
402 B
Python
load(
|
|
"@rules_apple_extras//apple:objc_library.bzl",
|
|
"my_swift_library",
|
|
)
|
|
|
|
my_swift_library(
|
|
name = "WalletCore",
|
|
module_name = "WalletCore",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
deps = [
|
|
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit",
|
|
"//submodules/TonBinding:TonBinding",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|