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

20 lines
540 B
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "UIKitRuntimeUtils",
srcs = glob([
"Source/UIKitRuntimeUtils/*.m",
]),
exported_headers = glob([
"Source/UIKitRuntimeUtils/*.h",
]),
deps = [
"//submodules/AsyncDisplayKit:AsyncDisplayKit",
"//submodules/ObjCRuntimeUtils:ObjCRuntimeUtils",
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
],
)