mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
23 lines
421 B
Text
23 lines
421 B
Text
|
|
objc_library(
|
|
name = "LegacyImpl",
|
|
enable_modules = True,
|
|
module_name = "LegacyImpl",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.c",
|
|
"Sources/**/*.h",
|
|
]),
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|