mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
18 lines
474 B
Python
18 lines
474 B
Python
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
|
|
|
|
swift_library(
|
|
name = "MessageHistoryReadStateTable",
|
|
module_name = "MessageHistoryReadStateTable",
|
|
srcs = glob([
|
|
"Sources/**/*.swift",
|
|
]),
|
|
deps = [
|
|
"//submodules/Database/ValueBox:ValueBox",
|
|
"//submodules/Database/Table:Table",
|
|
"//submodules/Database/PostboxDataTypes:PostboxDataTypes",
|
|
],
|
|
visibility = [
|
|
"//visibility:public",
|
|
],
|
|
)
|