2021-05-11 23:31:03 +04:00

36 lines
1.5 KiB
Python

load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "ShareController",
module_name = "ShareController",
srcs = glob([
"Sources/**/*.swift",
]),
deps = [
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit",
"//submodules/AsyncDisplayKit:AsyncDisplayKit",
"//submodules/Postbox:Postbox",
"//submodules/TelegramCore:TelegramCore",
"//submodules/SyncCore:SyncCore",
"//submodules/SaveToCameraRoll:SaveToCameraRoll",
"//submodules/StickerResources:StickerResources",
"//submodules/UrlEscaping:UrlEscaping",
"//submodules/LocalizedPeerData:LocalizedPeerData",
"//submodules/ActionSheetPeerItem:ActionSheetPeerItem",
"//submodules/ChatListSearchRecentPeersNode:ChatListSearchRecentPeersNode",
"//submodules/PeerPresenceStatusManager:PeerPresenceStatusManager",
"//submodules/SelectablePeerNode:SelectablePeerNode",
"//submodules/RadialStatusNode:RadialStatusNode",
"//submodules/ActivityIndicator:ActivityIndicator",
"//submodules/AppBundle:AppBundle",
"//submodules/TelegramStringFormatting:TelegramStringFormatting",
"//submodules/TelegramIntents:TelegramIntents",
"//submodules/AccountContext:AccountContext",
"//submodules/SegmentedControlNode:SegmentedControlNode",
"//submodules/WallpaperBackgroundNode:WallpaperBackgroundNode",
],
visibility = [
"//visibility:public",
],
)