mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
26 lines
465 B
Python
26 lines
465 B
Python
|
|
objc_library(
|
|
name = "opusfile",
|
|
enable_modules = True,
|
|
module_name = "opusfile",
|
|
srcs = glob([
|
|
"Sources/*.c",
|
|
]),
|
|
hdrs = glob([
|
|
"include/opusfile/*.h",
|
|
]),
|
|
includes = [
|
|
"include",
|
|
],
|
|
copts = [
|
|
"-Ithird-party/opusfile/include/opusfile",
|
|
],
|
|
deps = [
|
|
"//third-party/ogg:ogg",
|
|
"//third-party/opus:opus",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|