mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
21 lines
418 B
Python
21 lines
418 B
Python
load("//Config:buck_rule_macros.bzl", "static_library")
|
|
|
|
static_library(
|
|
name = "FFMpegBinding",
|
|
srcs = glob([
|
|
"Sources/*.m",
|
|
]),
|
|
headers = glob([
|
|
"Sources/*.h",
|
|
]),
|
|
exported_headers = glob([
|
|
"Public/**/*.h",
|
|
]),
|
|
deps = [
|
|
"//submodules/ffmpeg:ffmpeg",
|
|
],
|
|
frameworks = [
|
|
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
|
|
],
|
|
)
|