2019-08-26 04:25:02 +04:00

25 lines
728 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "CheckNode",
srcs = glob([
"Sources/**/*.swift",
"Sources/*.m",
]),
headers = glob([
"Sources/*.h",
], exclude = ["Sources/TelegramPresentationData.h"]),
exported_headers = glob([
"Sources/*.h",
], exclude = ["Sources/TelegramPresentationData.h"]),
deps = [
"//submodules/AsyncDisplayKit:AsyncDisplayKit#shared",
"//submodules/Display:Display#shared",
"//submodules/LegacyComponents:LegacyComponents",
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
],
)