mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-05 19:28:46 +02:00
Temp
This commit is contained in:
parent
7a01746ef7
commit
ca75be91fe
12 changed files with 293 additions and 5 deletions
48
WORKSPACE
Normal file
48
WORKSPACE
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
||||
|
||||
http_archive(
|
||||
name = "com_google_protobuf",
|
||||
urls = ["https://github.com/protocolbuffers/protobuf/archive/v3.8.0.zip"],
|
||||
sha256 = "1e622ce4b84b88b6d2cdf1db38d1a634fe2392d74f0b7b74ff98f3a51838ee53",
|
||||
strip_prefix = "protobuf-3.8.0",
|
||||
type = "zip",
|
||||
)
|
||||
|
||||
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps")
|
||||
protobuf_deps()
|
||||
|
||||
local_repository(
|
||||
name = "build_bazel_rules_apple",
|
||||
path = "build-system/bazel-rules/rules_apple",
|
||||
)
|
||||
|
||||
local_repository(
|
||||
name = "build_bazel_rules_swift",
|
||||
path = "build-system/bazel-rules/rules_swift",
|
||||
)
|
||||
|
||||
local_repository(
|
||||
name = "build_bazel_apple_support",
|
||||
path = "build-system/bazel-rules/apple_support",
|
||||
)
|
||||
|
||||
load(
|
||||
"@build_bazel_rules_apple//apple:repositories.bzl",
|
||||
"apple_rules_dependencies",
|
||||
)
|
||||
|
||||
apple_rules_dependencies()
|
||||
|
||||
load(
|
||||
"@build_bazel_rules_swift//swift:repositories.bzl",
|
||||
"swift_rules_dependencies",
|
||||
)
|
||||
|
||||
swift_rules_dependencies()
|
||||
|
||||
load(
|
||||
"@build_bazel_apple_support//lib:repositories.bzl",
|
||||
"apple_support_dependencies",
|
||||
)
|
||||
|
||||
apple_support_dependencies()
|
||||
Loading…
Add table
Add a link
Reference in a new issue