2019-08-27 00:44:36 +04:00

26 lines
777 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "TelegramVoip",
srcs = glob([
"Sources/**/*.swift",
"Sources/**/*.m",
]),
headers = glob([
"Sources/**/*.h",
], exclude = ["Sources/TelegramVoip.h"]),
exported_headers = glob([
"Sources/**/*.h",
], exclude = ["Sources/TelegramVoip.h"]),
deps = [
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared",
"//submodules/TelegramCore:TelegramCore#shared",
"//submodules/Postbox:Postbox#shared",
"//submodules/TelegramUIPreferences:TelegramUIPreferences",
"//submodules/libtgvoip:libtgvoip",
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
],
)