mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
26 lines
364 B
Python
26 lines
364 B
Python
|
|
cc_library(
|
|
name = "webp_lib",
|
|
srcs = [
|
|
"lib/libwebp.a",
|
|
],
|
|
)
|
|
|
|
objc_library(
|
|
name = "webp",
|
|
module_name = "webp",
|
|
enable_modules = True,
|
|
hdrs = glob([
|
|
"include/**/*.h",
|
|
]),
|
|
includes = [
|
|
"include",
|
|
],
|
|
deps = [
|
|
":webp_lib",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
]
|
|
)
|