Protocol Buffers - Google's data interchange format (grpc依赖)
https://developers.google.com/protocol-buffers/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.9 KiB
119 lines
4.9 KiB
"""Load dependencies needed to compile the protobuf library as a 3rd-party consumer.""" |
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
|
|
|
PROTOBUF_MAVEN_ARTIFACTS = [ |
|
"com.google.code.findbugs:jsr305:3.0.2", |
|
"com.google.code.gson:gson:2.8.9", |
|
"com.google.errorprone:error_prone_annotations:2.3.2", |
|
"com.google.j2objc:j2objc-annotations:1.3", |
|
"com.google.guava:guava:31.1-jre", |
|
"com.google.guava:guava-testlib:31.1-jre", |
|
"com.google.truth:truth:1.1.2", |
|
"junit:junit:4.13.2", |
|
"org.mockito:mockito-core:4.3.1", |
|
] |
|
|
|
def _github_archive(repo, commit, **kwargs): |
|
repo_name = repo.split("/")[-1] |
|
http_archive( |
|
urls = [repo + "/archive/" + commit + ".zip"], |
|
strip_prefix = repo_name + "-" + commit, |
|
**kwargs |
|
) |
|
|
|
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 = "97e70364e9249702246c0e9444bccdc4b847bed1eb03c5a3ece4f83dfe6abc44", |
|
urls = [ |
|
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz", |
|
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.0.2/bazel-skylib-1.0.2.tar.gz", |
|
], |
|
) |
|
|
|
if not native.existing_rule("com_google_absl"): |
|
# Abseil LTS from November 2021 |
|
_github_archive( |
|
name = "com_google_absl", |
|
repo = "https://github.com/abseil/abseil-cpp", |
|
commit = "215105818dfde3174fe799600bb0f3cae233d0bf", |
|
sha256 = "b4e20d9e752a75c10636675691b1e9c2698e0764cb404987d0ffa77223041c19", |
|
) |
|
|
|
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("rules_cc"): |
|
_github_archive( |
|
name = "rules_cc", |
|
repo = "https://github.com/bazelbuild/rules_cc", |
|
commit = "818289e5613731ae410efb54218a4077fb9dbb03", |
|
sha256 = "0adbd6f567291ad526e82c765e15aed33cea5e256eeba129f1501142c2c56610", |
|
) |
|
|
|
if not native.existing_rule("rules_java"): |
|
_github_archive( |
|
name = "rules_java", |
|
repo = "https://github.com/bazelbuild/rules_java", |
|
commit = "981f06c3d2bd10225e85209904090eb7b5fb26bd", |
|
sha256 = "7979ece89e82546b0dcd1dff7538c34b5a6ebc9148971106f0e3705444f00665", |
|
) |
|
|
|
if not native.existing_rule("rules_proto"): |
|
_github_archive( |
|
name = "rules_proto", |
|
repo = "https://github.com/bazelbuild/rules_proto", |
|
commit = "f7a30f6f80006b591fa7c437fe5a951eb10bcbcf", |
|
sha256 = "a4382f78723af788f0bc19fd4c8411f44ffe0a72723670a34692ffad56ada3ac", |
|
) |
|
|
|
if not native.existing_rule("rules_python"): |
|
http_archive( |
|
name = "rules_python", |
|
sha256 = "9fcf91dbcc31fde6d1edb15f117246d912c33c36f44cf681976bd886538deba6", |
|
strip_prefix = "rules_python-0.8.0", |
|
url = "https://github.com/bazelbuild/rules_python/archive/refs/tags/0.8.0.tar.gz", |
|
) |
|
|
|
if not native.existing_rule("rules_jvm_external"): |
|
_github_archive( |
|
name = "rules_jvm_external", |
|
repo = "https://github.com/bazelbuild/rules_jvm_external", |
|
commit = "906875b0d5eaaf61a8ca2c9c3835bde6f435d011", |
|
sha256 = "744bd7436f63af7e9872948773b8b106016dc164acb3960b4963f86754532ee7", |
|
) |
|
|
|
if not native.existing_rule("rules_pkg"): |
|
http_archive( |
|
name = "rules_pkg", |
|
urls = [ |
|
"https://mirror.bazel.build/github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz", |
|
"https://github.com/bazelbuild/rules_pkg/releases/download/0.7.0/rules_pkg-0.7.0.tar.gz", |
|
], |
|
sha256 = "8a298e832762eda1830597d64fe7db58178aa84cd5926d76d5b744d6558941c2", |
|
) |
|
|
|
if not native.existing_rule("io_bazel_rules_kotlin"): |
|
http_archive( |
|
name = "io_bazel_rules_kotlin", |
|
urls = ["https://github.com/bazelbuild/rules_kotlin/releases/download/v1.5.0-beta-4/rules_kotlin_release.tgz"], |
|
sha256 = "6cbd4e5768bdfae1598662e40272729ec9ece8b7bded8f0d2c81c8ff96dc139d", |
|
) |
|
|
|
if not native.existing_rule("upb"): |
|
_github_archive( |
|
name = "upb", |
|
repo = "https://github.com/protocolbuffers/upb", |
|
commit = "230d502d6ea96fc9d40f02ad26c20fe85a627648", |
|
sha256 = "28488db7f638ed5a433f7ac3b67e6b62932c155c2cd9987a2c534a3591f3b2dd", |
|
)
|
|
|