@@ -45,6 +45,22 @@ http_archive(
4545 urls = ["https://github.com/grpc/grpc/archive/v%s.zip" % GRPC_VERSION ],
4646)
4747
48+ http_archive (
49+ name = "com_github_grpc_grpc_web" ,
50+ strip_prefix = "grpc-web-b0ea9c7c45d6f9ea5338fc61a81b47f589a91259" ,
51+ sha256 = "a7ae33e32b95049f11373b62019b742464576a17c602fa6b2457926749d58a1c" ,
52+ urls = ["https://github.com/grpc/grpc-web/archive/b0ea9c7c45d6f9ea5338fc61a81b47f589a91259.tar.gz" ],
53+ )
54+
55+ http_archive (
56+ name = "io_bazel_rules_go" ,
57+ sha256 = "099a9fb96a376ccbbb7d291ed4ecbdfd42f6bc822ab77ae6f1b5cb9e914e94fa" ,
58+ urls = [
59+ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip" ,
60+ "https://github.com/bazelbuild/rules_go/releases/download/v0.35.0/rules_go-v0.35.0.zip" ,
61+ ],
62+ )
63+
4864http_archive (
4965 name = "io_grpc_proto" ,
5066 sha256 = "f081eba5884bf09051d27664aede4fc22bbaa77da477735d745bcef17bd088f1" ,
@@ -94,7 +110,6 @@ buildbuddy_deps()
94110load ("@io_buildbuddy_buildbuddy_toolchain//:rules.bzl" , "buildbuddy" )
95111buildbuddy (name = "buildbuddy_toolchain" )
96112
97-
98113load ("@gust//defs:build.bzl" , "install_dependencies" )
99114load ("@//config:build.bzl" , app_dependencies = "install_dependencies" )
100115load ("@gust//defs:config.bzl" , "CHROMIUM" , "FIREFOX" , "SAUCE" , "GRAALVM_VERSION" , "GRAALVM_JDK_VERSION" , "K8S_VERSION" )
@@ -117,7 +132,7 @@ switched_rules_by_language(
117132 java = True ,
118133 nodejs = False ,
119134 php = False ,
120- python = True ,
135+ python = False ,
121136 ruby = False ,
122137)
123138
@@ -149,6 +164,15 @@ rules_proto_dependencies()
149164
150165rules_proto_toolchains ()
151166
167+ #
168+ # Go
169+ #
170+ load ("@io_bazel_rules_go//go:deps.bzl" , "go_register_toolchains" , "go_rules_dependencies" )
171+ load ("@bazel_gazelle//:deps.bzl" , "gazelle_dependencies" )
172+
173+ go_rules_dependencies ()
174+ go_register_toolchains (version = "1.19.1" )
175+ gazelle_dependencies ()
152176
153177#
154178# Extensions
@@ -168,8 +192,8 @@ http_archive(
168192## NodeJS
169193http_archive (
170194 name = "build_bazel_rules_nodejs" ,
171- sha256 = "8a7c981217239085f78acc9898a1f7ba99af887c1996ceb3b4504655383a2c3c " ,
172- urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/4.0.0 /rules_nodejs-4.0.0 .tar.gz" ],
195+ sha256 = "c911b5bd8aee8b0498cc387cacdb5f917098ce477fb4182db07b0ef8a9e045c0 " ,
196+ urls = ["https://github.com/bazelbuild/rules_nodejs/releases/download/4.7.1 /rules_nodejs-4.7.1 .tar.gz" ],
173197)
174198
175199load (
@@ -386,14 +410,6 @@ stardoc_repositories()
386410load ("@build_stack_rules_proto//swift:deps.bzl" , "swift_proto_library" )
387411swift_proto_library ()
388412
389- ## Go
390- load ("@io_bazel_rules_go//go:deps.bzl" , "go_register_toolchains" , "go_rules_dependencies" )
391- load ("@bazel_gazelle//:deps.bzl" , "gazelle_dependencies" )
392-
393- go_rules_dependencies ()
394- go_register_toolchains ()
395- gazelle_dependencies ()
396-
397413## Protoc-Gen-Doc
398414load ("@protoc_gen_doc//defs:deps.bzl" , protoc_gen_doc_dependencies = "go_dependencies" )
399415protoc_gen_doc_dependencies ()
@@ -426,15 +442,16 @@ npm_bazel_labs_dependencies()
426442## JarJar
427443load ("@bazel_tools//tools/build_defs/repo:git.bzl" , "git_repository" )
428444
429- git_repository (
445+ http_archive (
430446 name = "com_github_johnynek_bazel_jar_jar" ,
431- shallow_since = "1594234634 -1000 " ,
432- commit = "171f268569384c57c19474b04aebe574d85fde0d" ,
433- remote = "git ://github.com/johnynek /bazel_jar_jar.git" ,
447+ sha256 = "97c5f862482a05f385bd8f9d28a9bbf684b0cf3fae93112ee96f3fb04d34b193 " ,
448+ strip_prefix = "bazel_jar_jar- 171f268569384c57c19474b04aebe574d85fde0d" ,
449+ urls = [ "https ://github.com/OpenCannabis /bazel_jar_jar/archive/171f268569384c57c19474b04aebe574d85fde0d.tar.gz" ] ,
434450)
435451
436452load (
437453 "@com_github_johnynek_bazel_jar_jar//:jar_jar.bzl" ,
438454 "jar_jar_repositories" ,
439455)
440456jar_jar_repositories ()
457+
0 commit comments