mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
33 lines
967 B
Python
33 lines
967 B
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "TelegramUIDeclareEncodables",
|
|
module_name = "TelegramUIDeclareEncodables",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
copts = [
|
|
"-warnings-as-errors",
|
|
],
|
|
deps = [
|
|
"//submodules/Postbox",
|
|
"//submodules/TemporaryCachedPeerDataManager",
|
|
"//submodules/TelegramUIPreferences",
|
|
"//submodules/TelegramNotices",
|
|
"//submodules/InstantPageUI",
|
|
"//submodules/AccountContext",
|
|
"//submodules/LocalMediaResources",
|
|
"//submodules/WebSearchUI",
|
|
"//submodules/InstantPageCache",
|
|
"//submodules/SettingsUI",
|
|
"//submodules/WallpaperResources",
|
|
"//submodules/MediaResources",
|
|
"//submodules/LocationUI",
|
|
"//submodules/ChatInterfaceState",
|
|
"//submodules/ICloudResources",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|