GoogleTest - Google Testing and Mocking Framework (grpc protobuff依赖)
https://google.github.io/googletest/
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.
27 lines
1.1 KiB
27 lines
1.1 KiB
workspace(name = "com_google_googletest") |
|
|
|
load("//:googletest_deps.bzl", "googletest_deps") |
|
googletest_deps() |
|
|
|
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") |
|
|
|
http_archive( |
|
name = "rules_python", # 2023-07-31T20:39:27Z |
|
sha256 = "1250b59a33c591a1c4ba68c62e95fc88a84c334ec35a2e23f46cbc1b9a5a8b55", |
|
strip_prefix = "rules_python-e355becc30275939d87116a4ec83dad4bb50d9e1", |
|
urls = ["https://github.com/bazelbuild/rules_python/archive/e355becc30275939d87116a4ec83dad4bb50d9e1.zip"], |
|
) |
|
|
|
http_archive( |
|
name = "bazel_skylib", # 2023-05-31T19:24:07Z |
|
sha256 = "08c0386f45821ce246bbbf77503c973246ed6ee5c3463e41efc197fa9bc3a7f4", |
|
strip_prefix = "bazel-skylib-288731ef9f7f688932bd50e704a91a45ec185f9b", |
|
urls = ["https://github.com/bazelbuild/bazel-skylib/archive/288731ef9f7f688932bd50e704a91a45ec185f9b.zip"], |
|
) |
|
|
|
http_archive( |
|
name = "platforms", # 2023-07-28T19:44:27Z |
|
sha256 = "40eb313613ff00a5c03eed20aba58890046f4d38dec7344f00bb9a8867853526", |
|
strip_prefix = "platforms-4ad40ef271da8176d4fc0194d2089b8a76e19d7b", |
|
urls = ["https://github.com/bazelbuild/platforms/archive/4ad40ef271da8176d4fc0194d2089b8a76e19d7b.zip"], |
|
)
|
|
|