Buildify all the build files

We are slowly upgrading them all.  Bite bullet and do the rest of them.

Change-Id: I15744cf1b0dc1954954e131b35228c98247c92fe
diff --git a/frc971/shooter_interpolation/BUILD b/frc971/shooter_interpolation/BUILD
index 3509040..cce93e1 100644
--- a/frc971/shooter_interpolation/BUILD
+++ b/frc971/shooter_interpolation/BUILD
@@ -1,21 +1,21 @@
 cc_library(
-  name = 'interpolation',
-  hdrs = [
-    'interpolation.h',
-  ],
-  srcs = [
-    'interpolation.cc',
-  ],
-  visibility = ['//visibility:public'],
+    name = "interpolation",
+    srcs = [
+        "interpolation.cc",
+    ],
+    hdrs = [
+        "interpolation.h",
+    ],
+    visibility = ["//visibility:public"],
 )
 
 cc_test(
-  name = 'interpolation_test',
-  srcs = [
-    'interpolation_test.cc',
-  ],
-  deps = [
-   ':interpolation',
-   '//aos/testing:googletest',
-  ]
+    name = "interpolation_test",
+    srcs = [
+        "interpolation_test.cc",
+    ],
+    deps = [
+        ":interpolation",
+        "//aos/testing:googletest",
+    ],
 )