2019-08-26 04:28:26 +04:00

20 lines
645 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "LiveLocationManager",
srcs = glob([
"Sources/**/*.swift",
]),
deps = [
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#dynamic",
"//submodules/TelegramCore:TelegramCore#dynamic",
"//submodules/Postbox:Postbox#dynamic",
"//submodules/DeviceLocationManager:DeviceLocationManager",
"//submodules/AccountContext:AccountContext",
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/CoreLocation.framework",
],
)