This commit is contained in:
Peter 2019-08-26 04:25:02 +04:00
parent dcfb6ddd9c
commit dbfb4eb8d9
150 changed files with 3946 additions and 522 deletions

View file

@ -0,0 +1,20 @@
load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "Lottie",
srcs = glob([
"lottie-ios/**/*.m",
]),
headers = glob([
"lottie-ios/**/*.h",
]),
exported_headers = glob([
"lottie-ios/Classes/PublicHeaders/*.h",
]),
deps = [
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
],
)