Ilya Laktyushin 8ca47c3aef Donate send message intents when posting from share controller
Clear donated send message intents on logout
2019-11-07 18:31:36 +04:00

33 lines
1.3 KiB
Python

load("//Config:buck_rule_macros.bzl", "static_library")
static_library(
name = "ShareController",
srcs = glob([
"Sources/**/*.swift",
]),
deps = [
"//submodules/SSignalKit/SwiftSignalKit:SwiftSignalKit#shared",
"//submodules/AsyncDisplayKit:AsyncDisplayKit#shared",
"//submodules/Postbox:Postbox#shared",
"//submodules/TelegramCore:TelegramCore#shared",
"//submodules/SyncCore:SyncCore#shared",
"//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/AppIntents:AppIntents",
],
frameworks = [
"$SDKROOT/System/Library/Frameworks/Foundation.framework",
"$SDKROOT/System/Library/Frameworks/UIKit.framework",
],
)