This commit is contained in:
Ali 2020-12-17 16:36:55 +04:00
parent 0426351ee8
commit 2805b1715c
267 changed files with 0 additions and 8770 deletions

View file

@ -1,24 +0,0 @@
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",
],
)

View file

@ -1,15 +0,0 @@
load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "OverlayStatusControllerImpl",
srcs = glob([
"Sources/**/*.m",
]),
exported_headers = glob([
"Sources/**/*.h",
]),
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
],
)