mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
20 lines
540 B
Python
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",
|
|
],
|
|
)
|