2020-02-19 04:58:49 +04:00

25 lines
648 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
apple_resource(
name = "OverlayStatusControllerResources",
files = glob([
"Resources/**/*",
], exclude = ["Resources/**/.*"]),
visibility = ["PUBLIC"],
)
static_library(
name = "OverlayStatusController",
srcs = glob([
"Sources/**/*.swift",
]),
deps = [
"//submodules/Display:Display#shared",
"//submodules/OverlayStatusController/Impl:OverlayStatusControllerImpl",
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
],
)