mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
24 lines
416 B
Python
24 lines
416 B
Python
load(
|
|
"@rules_apple_extras//apple:objc_library.bzl",
|
|
"objc_library",
|
|
)
|
|
|
|
objc_library(
|
|
name = "AppBundle",
|
|
module_name = "AppBundle",
|
|
enable_modules = True,
|
|
srcs = glob([
|
|
"Source/AppBundle/*.m",
|
|
]),
|
|
hdrs = glob([
|
|
"Source/AppBundle/*.h",
|
|
]),
|
|
sdk_frameworks = [
|
|
"Foundation",
|
|
"UIKit",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|