File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1+ load ("@com_github_bazelbuild_buildtools//buildifier:def.bzl" , "buildifier" )
12load ("//common:browsers.bzl" , "chrome_data" , "firefox_data" )
23load ("//java:browsers.bzl" , "chrome_jvm_flags" , "firefox_jvm_flags" )
34load ("//java:defs.bzl" , "artifact" )
@@ -59,3 +60,12 @@ platform(
5960 "@platforms//cpu:x86_64" ,
6061 ],
6162)
63+
64+ buildifier (
65+ name = "buildifier" ,
66+ # lint_mode = "fix",
67+ mode = "fix" ,
68+ tags = [
69+ "manual" ,
70+ ],
71+ )
Original file line number Diff line number Diff line change @@ -101,6 +101,23 @@ rules_proto_dependencies()
101101
102102rules_proto_toolchains ()
103103
104+ # The go rules are often a dependency of _something_, so loading the version
105+ # we want early
106+ http_archive (
107+ name = "io_bazel_rules_go" ,
108+ sha256 = "6b65cb7917b4d1709f9410ffe00ecf3e160edf674b78c54a894471320862184f" ,
109+ urls = [
110+ "https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.39.0/rules_go-v0.39.0.zip" ,
111+ "https://github.com/bazelbuild/rules_go/releases/download/v0.39.0/rules_go-v0.39.0.zip" ,
112+ ],
113+ )
114+
115+ load ("@io_bazel_rules_go//go:deps.bzl" , "go_register_toolchains" , "go_rules_dependencies" )
116+
117+ go_rules_dependencies ()
118+
119+ go_register_toolchains (version = "1.19.3" )
120+
104121http_archive (
105122 name = "rules_jvm_external" ,
106123 patch_args = [
@@ -315,3 +332,12 @@ rb_bundle(
315332 ],
316333 gemfile = "//:rb/Gemfile" ,
317334)
335+
336+ http_archive (
337+ name = "com_github_bazelbuild_buildtools" ,
338+ sha256 = "65391537d1ef528bf772ae25d2c163bd5cee6a929b06cad985e0734f1a12610b" ,
339+ strip_prefix = "buildtools-6.1.2" ,
340+ urls = [
341+ "https://github.com/bazelbuild/buildtools/archive/refs/tags/v6.1.2.zip" ,
342+ ],
343+ )
You can’t perform that action at this time.
0 commit comments