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" )
1
2
load ("//common:browsers.bzl" , "chrome_data" , "firefox_data" )
2
3
load ("//java:browsers.bzl" , "chrome_jvm_flags" , "firefox_jvm_flags" )
3
4
load ("//java:defs.bzl" , "artifact" )
@@ -59,3 +60,12 @@ platform(
59
60
"@platforms//cpu:x86_64" ,
60
61
],
61
62
)
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()
101
101
102
102
rules_proto_toolchains ()
103
103
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
+
104
121
http_archive (
105
122
name = "rules_jvm_external" ,
106
123
patch_args = [
@@ -315,3 +332,12 @@ rb_bundle(
315
332
],
316
333
gemfile = "//:rb/Gemfile" ,
317
334
)
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