Buildify some hand-written BUILD files
We currently exclude third_party BUILD files from buildifier, but some
of these are hand-written and so can be reasonably formatted.
Also, fixes a random flatbuffers BUILD file that I believe had randomly
diverged from upstream for some reason.
Change-Id: I03141e25556f52b7b80b46c700f570689cc38a1f
Signed-off-by: James Kuszmaul <james.kuszmaul@bluerivertech.com>
diff --git a/third_party/julia/julia.BUILD b/third_party/julia/julia.BUILD
index 94988ca..7f25671 100644
--- a/third_party/julia/julia.BUILD
+++ b/third_party/julia/julia.BUILD
@@ -1,18 +1,21 @@
load("@rules_pkg//:pkg.bzl", "pkg_tar")
-load(":files.bzl", "LIB_SYMLINKS", "LIBS")
+load(":files.bzl", "LIBS", "LIB_SYMLINKS")
pkg_tar(
name = "runtime",
srcs = LIBS + [
"bin/julia",
- ] + glob([
- "share/julia/**/*.jl",
- "share/julia/**/*.toml",
- "include/julia/**/*",
- ], exclude = [
- "**/test/**",
- ]),
- symlinks = LIB_SYMLINKS,
+ ] + glob(
+ [
+ "share/julia/**/*.jl",
+ "share/julia/**/*.toml",
+ "include/julia/**/*",
+ ],
+ exclude = [
+ "**/test/**",
+ ],
+ ),
strip_prefix = "external/julia",
+ symlinks = LIB_SYMLINKS,
visibility = ["//visibility:public"],
)