mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
41 lines
884 B
Python
Vendored
41 lines
884 B
Python
Vendored
|
|
ASYNCDISPLAYKIT_EXPORTED_HEADERS = glob([
|
|
"Source/*.h",
|
|
"Source/Details/**/*.h",
|
|
"Source/Layout/*.h",
|
|
"Source/Base/*.h",
|
|
"Source/Debug/AsyncDisplayKit+Debug.h",
|
|
"Source/TextKit/ASTextNodeTypes.h",
|
|
"Source/TextKit/ASTextKitComponents.h"
|
|
])
|
|
|
|
ASYNCDISPLAYKIT_PRIVATE_HEADERS = glob([
|
|
"Source/**/*.h"
|
|
],
|
|
exclude = ASYNCDISPLAYKIT_EXPORTED_HEADERS,
|
|
)
|
|
|
|
objc_library(
|
|
name = "AsyncDisplayKit",
|
|
enable_modules = True,
|
|
module_name = "AsyncDisplayKit",
|
|
srcs = glob([
|
|
"Source/**/*.m",
|
|
"Source/**/*.mm",
|
|
"Source/Base/*.m",
|
|
]) + ASYNCDISPLAYKIT_PRIVATE_HEADERS,
|
|
hdrs = ASYNCDISPLAYKIT_EXPORTED_HEADERS,
|
|
defines = [
|
|
"MINIMAL_ASDK",
|
|
],
|
|
sdk_frameworks = [
|
|
"QuartzCore",
|
|
"CoreMedia",
|
|
"CoreText",
|
|
"CoreGraphics",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|