mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-15 21:45:19 +00:00
27 lines
398 B
Python
Vendored
27 lines
398 B
Python
Vendored
|
|
cc_library(
|
|
name = "opus_lib",
|
|
srcs = [
|
|
"Sources/opus/lib/libopus.a",
|
|
],
|
|
)
|
|
|
|
objc_library(
|
|
name = "opus",
|
|
module_name = "opus",
|
|
enable_modules = True,
|
|
hdrs = glob([
|
|
"Public/**/*.h",
|
|
]),
|
|
includes = [
|
|
"Public",
|
|
"Public/opus",
|
|
],
|
|
deps = [
|
|
":opus_lib",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
]
|
|
)
|