29d650aefb
This way, we can avoid an unnecessary copy.
65 lines
3.0 KiB
Python
65 lines
3.0 KiB
Python
"""Load dependencies needed to compile the protobuf library as a 3rd-party consumer."""
|
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
|
|
|
|
def protobuf_deps():
|
|
"""Loads common dependencies needed to compile the protobuf library."""
|
|
|
|
if not native.existing_rule("bazel_skylib"):
|
|
http_archive(
|
|
name = "bazel_skylib",
|
|
sha256 = "bbccf674aa441c266df9894182d80de104cabd19be98be002f6d478aaa31574d",
|
|
strip_prefix = "bazel-skylib-2169ae1c374aab4a09aa90e65efe1a3aad4e279b",
|
|
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e279b.tar.gz"],
|
|
)
|
|
|
|
if not native.existing_rule("zlib"):
|
|
http_archive(
|
|
name = "zlib",
|
|
build_file = "@com_google_protobuf//:third_party/zlib.BUILD",
|
|
sha256 = "629380c90a77b964d896ed37163f5c3a34f6e6d897311f1df2a7016355c45eff",
|
|
strip_prefix = "zlib-1.2.11",
|
|
urls = ["https://github.com/madler/zlib/archive/v1.2.11.tar.gz"],
|
|
)
|
|
|
|
if not native.existing_rule("six"):
|
|
http_archive(
|
|
name = "six",
|
|
build_file = "@com_google_protobuf//:third_party/six.BUILD",
|
|
sha256 = "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73",
|
|
strip_prefix = "six-1.12.0",
|
|
urls = ["https://pypi.python.org/packages/source/s/six/six-1.12.0.tar.gz"],
|
|
)
|
|
|
|
if not native.existing_rule("rules_cc"):
|
|
http_archive(
|
|
name = "rules_cc",
|
|
sha256 = "29daf0159f0cf552fcff60b49d8bcd4f08f08506d2da6e41b07058ec50cfeaec",
|
|
strip_prefix = "rules_cc-b7fe9697c0c76ab2fd431a891dbb9a6a32ed7c3e",
|
|
urls = ["https://github.com/bazelbuild/rules_cc/archive/b7fe9697c0c76ab2fd431a891dbb9a6a32ed7c3e.tar.gz"],
|
|
)
|
|
|
|
if not native.existing_rule("rules_java"):
|
|
http_archive(
|
|
name = "rules_java",
|
|
sha256 = "f5a3e477e579231fca27bf202bb0e8fbe4fc6339d63b38ccb87c2760b533d1c3",
|
|
strip_prefix = "rules_java-981f06c3d2bd10225e85209904090eb7b5fb26bd",
|
|
urls = ["https://github.com/bazelbuild/rules_java/archive/981f06c3d2bd10225e85209904090eb7b5fb26bd.tar.gz"],
|
|
)
|
|
|
|
if not native.existing_rule("rules_proto"):
|
|
http_archive(
|
|
name = "rules_proto",
|
|
sha256 = "602e7161d9195e50246177e7c55b2f39950a9cf7366f74ed5f22fd45750cd208",
|
|
strip_prefix = "rules_proto-97d8af4dc474595af3900dd85cb3a29ad28cc313",
|
|
urls = ["https://github.com/bazelbuild/rules_proto/archive/97d8af4dc474595af3900dd85cb3a29ad28cc313.tar.gz"],
|
|
)
|
|
|
|
if not native.existing_rule("rules_python"):
|
|
http_archive(
|
|
name = "rules_python",
|
|
sha256 = "e5470e92a18aa51830db99a4d9c492cc613761d5bdb7131c04bd92b9834380f6",
|
|
strip_prefix = "rules_python-4b84ad270387a7c439ebdccfd530e2339601ef27",
|
|
urls = ["https://github.com/bazelbuild/rules_python/archive/4b84ad270387a7c439ebdccfd530e2339601ef27.tar.gz"],
|
|
)
|