mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
31 lines
681 B
Python
31 lines
681 B
Python
|
|
objc_library(
|
|
name = "NotificationServiceObjC",
|
|
enable_modules = True,
|
|
module_name = "NotificationServiceObjC",
|
|
srcs = glob([
|
|
"Sources/**/*.m",
|
|
"Sources/**/*.h",
|
|
]),
|
|
hdrs = glob([
|
|
"PublicHeaders/**/*.h",
|
|
]),
|
|
includes = [
|
|
"PublicHeaders",
|
|
],
|
|
deps = [
|
|
"//submodules/BuildConfig:BuildConfig",
|
|
"//submodules/MtProtoKit:MtProtoKit",
|
|
"//submodules/NotificationsPresentationData:NotificationsPresentationData",
|
|
],
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
],
|
|
weak_sdk_frameworks = [
|
|
"BackgroundTasks",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|