1515################################################################################
1616#
1717load ("@bazel_tools//tools/build_defs/repo:http.bzl" , "http_archive" )
18- load ("@bazel_tools//tools/build_defs/repo:git.bzl" , "git_repository" )
1918
20- def absl_repositories (bind = True ):
19+ def absl_repositories ():
2120 http_archive (
2221 name = "com_google_absl" ,
2322 sha256 = "ea1d31db00eb37e607bfda17ffac09064670ddf05da067944c4766f517876390" ,
@@ -28,7 +27,7 @@ def absl_repositories(bind = True):
2827PROTOBUF_COMMIT = "315ffb5be89460f2857387d20aefc59b76b8bdc3" # May 31, 2023
2928PROTOBUF_SHA256 = "aa61db6ff113a1c76eac9408144c6e996c5e2d6b2410818fd7f1b0d222a50bf8"
3029
31- def protobuf_repositories (bind = True ):
30+ def protobuf_repositories ():
3231 http_archive (
3332 name = "com_google_protobuf" ,
3433 strip_prefix = "protobuf-" + PROTOBUF_COMMIT ,
@@ -41,7 +40,7 @@ def protobuf_repositories(bind = True):
4140GOOGLETEST_COMMIT = "f8d7d77c06936315286eb55f8de22cd23c188571" # v1.14.0: Aug 2, 2023
4241GOOGLETEST_SHA256 = "7ff5db23de232a39cbb5c9f5143c355885e30ac596161a6b9fc50c4538bfbf01"
4342
44- def googletest_repositories (bind = True ):
43+ def googletest_repositories ():
4544 http_archive (
4645 name = "com_google_googletest" ,
4746 strip_prefix = "googletest-" + GOOGLETEST_COMMIT ,
@@ -52,7 +51,7 @@ def googletest_repositories(bind = True):
5251GOOGLEAPIS_COMMIT = "1d5522ad1056f16a6d593b8f3038d831e64daeea" # Sept 03, 2020
5352GOOGLEAPIS_SHA256 = "cd13e547cffaad217c942084fd5ae0985a293d0cce3e788c20796e5e2ea54758"
5453
55- def googleapis_repositories (bind = True ):
54+ def googleapis_repositories ():
5655 http_archive (
5756 name = "com_google_googleapis" ,
5857 strip_prefix = "googleapis-" + GOOGLEAPIS_COMMIT ,
@@ -63,15 +62,15 @@ def googleapis_repositories(bind = True):
6362GOOGLEBENCHMARK_COMMIT = "1.7.0" # Jul 25, 2022
6463GOOGLEBENCHMARK_SHA256 = "3aff99169fa8bdee356eaa1f691e835a6e57b1efeadb8a0f9f228531158246ac"
6564
66- def googlebenchmark_repositories (bind = True ):
65+ def googlebenchmark_repositories ():
6766 http_archive (
6867 name = "com_google_benchmark" ,
6968 strip_prefix = "benchmark-" + GOOGLEBENCHMARK_COMMIT ,
7069 url = "https://github.com/google/benchmark/archive/v" + GOOGLEBENCHMARK_COMMIT + ".tar.gz" ,
7170 sha256 = GOOGLEBENCHMARK_SHA256 ,
7271 )
7372
74- def nlohmannjson_repositories (bind = True ):
73+ def nlohmannjson_repositories ():
7574 http_archive (
7675 name = "com_github_nlohmann_json" ,
7776 strip_prefix = "json-3.11.3" ,
@@ -82,14 +81,14 @@ def nlohmannjson_repositories(bind = True):
8281RULES_DOCKER_COMMIT = "0.25.0" # Jun 22, 2022
8382RULES_DOCKER_SHA256 = "b1e80761a8a8243d03ebca8845e9cc1ba6c82ce7c5179ce2b295cd36f7e394bf"
8483
85- def io_bazel_rules_docker (bind = True ):
84+ def io_bazel_rules_docker ():
8685 http_archive (
8786 name = "io_bazel_rules_docker" ,
8887 sha256 = RULES_DOCKER_SHA256 ,
8988 urls = ["https://github.com/bazelbuild/rules_docker/releases/download/v" + RULES_DOCKER_COMMIT + "/rules_docker-v" + RULES_DOCKER_COMMIT + ".tar.gz" ],
9089 )
9190
92- def protoconverter_repositories (bind = True ):
91+ def protoconverter_repositories ():
9392 http_archive (
9493 name = "com_google_protoconverter" ,
9594 sha256 = "6081836fa3838ebb1aa15089a5c3e20f877a0244c7a39b92a2000efb40408dcb" ,
0 commit comments