protobuf_deps.bzl 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. """Load dependencies needed to compile the protobuf library as a 3rd-party consumer."""
  2. load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
  3. def protobuf_deps():
  4. """Loads common dependencies needed to compile the protobuf library."""
  5. if not native.existing_rule("bazel_skylib"):
  6. http_archive(
  7. name = "bazel_skylib",
  8. sha256 = "bbccf674aa441c266df9894182d80de104cabd19be98be002f6d478aaa31574d",
  9. strip_prefix = "bazel-skylib-2169ae1c374aab4a09aa90e65efe1a3aad4e279b",
  10. urls = ["https://github.com/bazelbuild/bazel-skylib/archive/2169ae1c374aab4a09aa90e65efe1a3aad4e279b.tar.gz"],
  11. )
  12. if not native.existing_rule("zlib"):
  13. http_archive(
  14. name = "zlib",
  15. build_file = "@com_google_protobuf//:third_party/zlib.BUILD",
  16. sha256 = "c3e5e9fdd5004dcb542feda5ee4f0ff0744628baf8ed2dd5d66f8ca1197cb1a1",
  17. strip_prefix = "zlib-1.2.11",
  18. urls = ["https://zlib.net/zlib-1.2.11.tar.gz"],
  19. )
  20. if not native.existing_rule("six"):
  21. http_archive(
  22. name = "six",
  23. build_file = "@//:six.BUILD",
  24. sha256 = "105f8d68616f8248e24bf0e9372ef04d3cc10104f1980f54d57b2ce73a5ad56a",
  25. urls = ["https://pypi.python.org/packages/source/s/six/six-1.10.0.tar.gz#md5=34eed507548117b2ab523ab14b2f8b55"],
  26. )
  27. if not native.existing_rule("rules_cc"):
  28. http_archive(
  29. name = "rules_cc",
  30. sha256 = "29daf0159f0cf552fcff60b49d8bcd4f08f08506d2da6e41b07058ec50cfeaec",
  31. strip_prefix = "rules_cc-b7fe9697c0c76ab2fd431a891dbb9a6a32ed7c3e",
  32. urls = ["https://github.com/bazelbuild/rules_cc/archive/b7fe9697c0c76ab2fd431a891dbb9a6a32ed7c3e.tar.gz"],
  33. )
  34. if not native.existing_rule("rules_java"):
  35. http_archive(
  36. name = "rules_java",
  37. sha256 = "f5a3e477e579231fca27bf202bb0e8fbe4fc6339d63b38ccb87c2760b533d1c3",
  38. strip_prefix = "rules_java-981f06c3d2bd10225e85209904090eb7b5fb26bd",
  39. urls = ["https://github.com/bazelbuild/rules_java/archive/981f06c3d2bd10225e85209904090eb7b5fb26bd.tar.gz"],
  40. )
  41. if not native.existing_rule("rules_proto"):
  42. http_archive(
  43. name = "rules_proto",
  44. sha256 = "88b0a90433866b44bb4450d4c30bc5738b8c4f9c9ba14e9661deb123f56a833d",
  45. strip_prefix = "rules_proto-b0cc14be5da05168b01db282fe93bdf17aa2b9f4",
  46. urls = ["https://github.com/bazelbuild/rules_proto/archive/b0cc14be5da05168b01db282fe93bdf17aa2b9f4.tar.gz"],
  47. )