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/websocketpp/websocketpp.BUILD b/third_party/websocketpp/websocketpp.BUILD
index ecf12cd..436e47f 100644
--- a/third_party/websocketpp/websocketpp.BUILD
+++ b/third_party/websocketpp/websocketpp.BUILD
@@ -4,7 +4,10 @@
cc_library(
name = "com_github_zaphoyd_websocketpp",
hdrs = glob(["websocketpp/**/*.hpp"]),
- defines = ["_WEBSOCKETPP_CPP11_STL_", "ASIO_STANDALONE"],
+ defines = [
+ "_WEBSOCKETPP_CPP11_STL_",
+ "ASIO_STANDALONE",
+ ],
includes = ["."],
visibility = ["//visibility:public"],
deps = ["@asio"],