mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
24 lines
458 B
Python
24 lines
458 B
Python
load(
|
|
"@rules_apple_extras//apple:objc_library.bzl",
|
|
"objc_library",
|
|
)
|
|
|
|
objc_library(
|
|
name = "TonBinding",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.mm",
|
|
]),
|
|
hdrs = glob([
|
|
"Sources/**/*.h",
|
|
]),
|
|
deps = [
|
|
"//submodules/SSignalKit/SSignalKit:SSignalKit",
|
|
"//submodules/openssl:openssl",
|
|
"//submodules/ton:ton",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|