mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
50 lines
2.0 KiB
Python
50 lines
2.0 KiB
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
filegroup(
|
|
name = "PremiumUIResources",
|
|
srcs = glob([
|
|
"Resources/**/*",
|
|
], exclude = ["Resources/**/.*"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
swift_library(
|
|
name = "PremiumUI",
|
|
module_name = "PremiumUI",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = [
|
|
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit",
|
|
"//submodules/AsyncDisplayKit:AsyncDisplayKit",
|
|
"//submodules/Display:Display",
|
|
"//submodules/Postbox:Postbox",
|
|
"//submodules/TelegramCore:TelegramCore",
|
|
"//submodules/TelegramPresentationData:TelegramPresentationData",
|
|
"//submodules/TelegramUIPreferences:TelegramUIPreferences",
|
|
"//submodules/AccountContext:AccountContext",
|
|
"//submodules/TelegramStringFormatting:TelegramStringFormatting",
|
|
"//submodules/AppBundle:AppBundle",
|
|
"//submodules/AnimatedStickerNode:AnimatedStickerNode",
|
|
"//submodules/TelegramAnimatedStickerNode:TelegramAnimatedStickerNode",
|
|
"//submodules/SolidRoundedButtonNode:SolidRoundedButtonNode",
|
|
"//submodules/PresentationDataUtils:PresentationDataUtils",
|
|
"//submodules/ReactionSelectionNode:ReactionSelectionNode",
|
|
"//submodules/ComponentFlow:ComponentFlow",
|
|
"//submodules/Components/ViewControllerComponent:ViewControllerComponent",
|
|
"//submodules/Components/MultilineTextComponent:MultilineTextComponent",
|
|
"//submodules/Components/SheetComponent:SheetComponent",
|
|
"//submodules/Components/BundleIconComponent:BundleIconComponent",
|
|
"//submodules/Components/SolidRoundedButtonComponent:SolidRoundedButtonComponent",
|
|
"//submodules/Components/Forms/PrefixSectionGroupComponent:PrefixSectionGroupComponent",
|
|
"//submodules/InAppPurchaseManager:InAppPurchaseManager",
|
|
"//submodules/ConfettiEffect:ConfettiEffect",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|