mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
27 lines
469 B
Python
27 lines
469 B
Python
|
|
objc_library(
|
|
name = "WebPBinding",
|
|
enable_modules = True,
|
|
module_name = "WebPBinding",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.h",
|
|
]),
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
deps = [
|
|
"//third-party/webp:webp",
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
"UIKit",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|