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.
87 lines
2.7 KiB
87 lines
2.7 KiB
workspace(name = "upb") |
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
|
load("//bazel:workspace_deps.bzl", "upb_deps") |
|
|
|
upb_deps() |
|
|
|
load("@com_google_protobuf//:protobuf_deps.bzl", "protobuf_deps") |
|
protobuf_deps() |
|
|
|
http_archive( |
|
name = "lua", |
|
build_file = "//bazel:lua.BUILD", |
|
sha256 = "b9e2e4aad6789b3b63a056d442f7b39f0ecfca3ae0f1fc0ae4e9614401b69f4b", |
|
strip_prefix = "lua-5.2.4", |
|
urls = [ |
|
"https://mirror.bazel.build/www.lua.org/ftp/lua-5.2.4.tar.gz", |
|
"https://www.lua.org/ftp/lua-5.2.4.tar.gz", |
|
], |
|
) |
|
|
|
http_archive( |
|
name = "com_google_googletest", |
|
sha256 = "81964fe578e9bd7c94dfdb09c8e4d6e6759e19967e397dbea48d1c10e45d0df2", |
|
strip_prefix = "googletest-release-1.12.1", |
|
urls = [ |
|
"https://mirror.bazel.build/github.com/google/googletest/archive/refs/tags/release-1.12.1.tar.gz", |
|
"https://github.com/google/googletest/archive/refs/tags/release-1.12.1.tar.gz", |
|
], |
|
) |
|
|
|
http_archive( |
|
name = "com_github_google_benchmark", |
|
urls = ["https://github.com/google/benchmark/archive/0baacde3618ca617da95375e0af13ce1baadea47.zip"], |
|
strip_prefix = "benchmark-0baacde3618ca617da95375e0af13ce1baadea47", |
|
sha256 = "62e2f2e6d8a744d67e4bbc212fcfd06647080de4253c97ad5c6749e09faf2cb0", |
|
) |
|
|
|
http_archive( |
|
name = "com_google_googleapis", |
|
urls = ["https://github.com/googleapis/googleapis/archive/refs/heads/master.zip"], |
|
build_file = "//benchmarks:BUILD.googleapis", |
|
strip_prefix = "googleapis-master", |
|
patch_cmds = ["find google -type f -name BUILD.bazel -delete"], |
|
) |
|
|
|
http_archive( |
|
name = "rules_fuzzing", |
|
sha256 = "d9002dd3cd6437017f08593124fdd1b13b3473c7b929ceb0e60d317cb9346118", |
|
strip_prefix = "rules_fuzzing-0.3.2", |
|
urls = ["https://github.com/bazelbuild/rules_fuzzing/archive/v0.3.2.zip"], |
|
) |
|
|
|
http_archive( |
|
name = "com_google_absl", |
|
sha256 = "e7fdfe0bed87702a22c5b73b6b5fe08bedd25f17d617e52df6061b0f47d480b0", |
|
strip_prefix = "abseil-cpp-e6044634dd7caec2d79a13aecc9e765023768757", |
|
urls = [ |
|
"https://github.com/abseil/abseil-cpp/archive/e6044634dd7caec2d79a13aecc9e765023768757.tar.gz" |
|
], |
|
) |
|
|
|
load("@rules_fuzzing//fuzzing:repositories.bzl", "rules_fuzzing_dependencies") |
|
|
|
rules_fuzzing_dependencies() |
|
|
|
load("@rules_fuzzing//fuzzing:init.bzl", "rules_fuzzing_init") |
|
|
|
rules_fuzzing_init() |
|
|
|
load("//bazel:system_python.bzl", "system_python") |
|
system_python( |
|
name = "system_python", |
|
minimum_python_version = "3.7", |
|
) |
|
|
|
load("@system_python//:register.bzl", "register_system_python") |
|
register_system_python() |
|
|
|
load("@system_python//:pip.bzl", "pip_install") |
|
pip_install( |
|
name="pip_deps", |
|
requirements = "//python:requirements.txt", |
|
requirements_overrides = { |
|
"3.11": "//python:requirements_311.txt", |
|
}, |
|
)
|
|
|