mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
29 lines
476 B
Python
29 lines
476 B
Python
|
|
objc_library(
|
|
name = "FFMpegBinding",
|
|
module_name = "FFMpegBinding",
|
|
enable_modules = True,
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.h",
|
|
]),
|
|
hdrs = glob([
|
|
"Public/**/*.h",
|
|
]),
|
|
copts = [
|
|
"-Werror",
|
|
],
|
|
includes = [
|
|
"Public",
|
|
],
|
|
deps = [
|
|
"//submodules/ffmpeg",
|
|
],
|
|
sdk_frameworks = [
|
|
"CoreMedia",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
]
|
|
)
|