|
@@ -1,3 +1,5 @@
|
|
|
|
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
+
|
|
# This com_google_protobuf repository is required for proto_library rule.
|
|
# This com_google_protobuf repository is required for proto_library rule.
|
|
# It provides the protocol compiler binary (i.e., protoc).
|
|
# It provides the protocol compiler binary (i.e., protoc).
|
|
http_archive(
|
|
http_archive(
|
|
@@ -39,5 +41,18 @@ http_archive(
|
|
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e279b.tar.gz"],
|
|
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e279b.tar.gz"],
|
|
)
|
|
)
|
|
|
|
|
|
|
|
+http_archive(
|
|
|
|
+ name = "net_zlib",
|
|
|
|
+ build_file = "//:third_party/zlib.BUILD",
|
|
|
|
+ sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
|
|
|
|
+ strip_prefix = "zlib-1.2.11",
|
|
|
|
+ urls = ["https://zlib.net/zlib-1.2.11.tar.gz"],
|
|
|
|
+)
|
|
|
|
+
|
|
|
|
+bind(
|
|
|
|
+ name = "zlib",
|
|
|
|
+ actual = "@net_zlib//:zlib",
|
|
|
|
+)
|
|
|
|
+
|
|
load("@bazel_skylib//lib:versions.bzl", "versions")
|
|
load("@bazel_skylib//lib:versions.bzl", "versions")
|
|
versions.check(minimum_bazel_version = "0.5.4")
|
|
versions.check(minimum_bazel_version = "0.5.4")
|