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/tools/actions/BUILD b/tools/actions/BUILD
index 2362307..46c9541 100644
--- a/tools/actions/BUILD
+++ b/tools/actions/BUILD
@@ -1,30 +1,30 @@
 py_binary(
-  name = 'generate_compile_command',
-  srcs = [
-    'generate_compile_command.py',
-  ],
-  deps = [
-    '//third_party/bazel:extra_actions_proto_py',
-  ],
+    name = "generate_compile_command",
+    srcs = [
+        "generate_compile_command.py",
+    ],
+    deps = [
+        "//third_party/bazel:extra_actions_proto_py",
+    ],
 )
 
 action_listener(
-  name = 'generate_compile_commands_listener',
-  visibility = ['//visibility:public'],
-  mnemonics = [
-    'CppCompile',
-  ],
-  extra_actions = [':generate_compile_commands_action'],
+    name = "generate_compile_commands_listener",
+    extra_actions = [":generate_compile_commands_action"],
+    mnemonics = [
+        "CppCompile",
+    ],
+    visibility = ["//visibility:public"],
 )
 
 extra_action(
-  name = 'generate_compile_commands_action',
-  tools = [
-    ':generate_compile_command',
-  ],
-  out_templates = [
-    '$(ACTION_ID)_compile_command',
-  ],
-  cmd = '$(location :generate_compile_command) $(EXTRA_ACTION_FILE)' +
-        ' $(output $(ACTION_ID)_compile_command)',
+    name = "generate_compile_commands_action",
+    cmd = "$(location :generate_compile_command) $(EXTRA_ACTION_FILE)" +
+          " $(output $(ACTION_ID)_compile_command)",
+    out_templates = [
+        "$(ACTION_ID)_compile_command",
+    ],
+    tools = [
+        ":generate_compile_command",
+    ],
 )
diff --git a/tools/cpp/arm-frc-linux-gnueabi/BUILD b/tools/cpp/arm-frc-linux-gnueabi/BUILD
index 95000c3..669da48 100644
--- a/tools/cpp/arm-frc-linux-gnueabi/BUILD
+++ b/tools/cpp/arm-frc-linux-gnueabi/BUILD
@@ -1,86 +1,86 @@
-package(default_visibility = ['//tools/cpp:__pkg__'])
+package(default_visibility = ["//tools/cpp:__pkg__"])
 
 filegroup(
-  name = 'gcc',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:gcc',
-    'arm-frc-linux-gnueabi-gcc',
-  ],
+    name = "gcc",
+    srcs = [
+        "arm-frc-linux-gnueabi-gcc",
+        "@arm_frc_linux_gnueabi_repo//:gcc",
+    ],
 )
 
 filegroup(
-  name = 'ar',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:ar',
-    'arm-frc-linux-gnueabi-ar',
-  ],
+    name = "ar",
+    srcs = [
+        "arm-frc-linux-gnueabi-ar",
+        "@arm_frc_linux_gnueabi_repo//:ar",
+    ],
 )
 
 filegroup(
-  name = 'as',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:as',
-    'arm-frc-linux-gnueabi-as',
-  ],
+    name = "as",
+    srcs = [
+        "arm-frc-linux-gnueabi-as",
+        "@arm_frc_linux_gnueabi_repo//:as",
+    ],
 )
 
 filegroup(
-  name = 'ld',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:ld',
-    'arm-frc-linux-gnueabi-ld',
-  ],
+    name = "ld",
+    srcs = [
+        "arm-frc-linux-gnueabi-ld",
+        "@arm_frc_linux_gnueabi_repo//:ld",
+    ],
 )
 
 filegroup(
-  name = 'nm',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:nm',
-    'arm-frc-linux-gnueabi-nm',
-  ],
+    name = "nm",
+    srcs = [
+        "arm-frc-linux-gnueabi-nm",
+        "@arm_frc_linux_gnueabi_repo//:nm",
+    ],
 )
 
 filegroup(
-  name = 'objcopy',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:objcopy',
-    'arm-frc-linux-gnueabi-objcopy',
-  ],
+    name = "objcopy",
+    srcs = [
+        "arm-frc-linux-gnueabi-objcopy",
+        "@arm_frc_linux_gnueabi_repo//:objcopy",
+    ],
 )
 
 filegroup(
-  name = 'objdump',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:objdump',
-    'arm-frc-linux-gnueabi-objdump',
-  ],
+    name = "objdump",
+    srcs = [
+        "arm-frc-linux-gnueabi-objdump",
+        "@arm_frc_linux_gnueabi_repo//:objdump",
+    ],
 )
 
 filegroup(
-  name = 'strip',
-  srcs = [
-    '@arm_frc_linux_gnueabi_repo//:strip',
-    'arm-frc-linux-gnueabi-strip',
-  ],
+    name = "strip",
+    srcs = [
+        "arm-frc-linux-gnueabi-strip",
+        "@arm_frc_linux_gnueabi_repo//:strip",
+    ],
 )
 
 filegroup(
-  name = 'tool-wrappers',
-  srcs = [
-    ':gcc',
-    ':ar',
-    ':as',
-    ':ld',
-    ':nm',
-    ':objcopy',
-    ':objdump',
-    ':strip',
-  ],
+    name = "tool-wrappers",
+    srcs = [
+        ":ar",
+        ":as",
+        ":gcc",
+        ":ld",
+        ":nm",
+        ":objcopy",
+        ":objdump",
+        ":strip",
+    ],
 )
 
 filegroup(
-  name = 'libs',
-  srcs = glob([
-    'libs/**',
-  ]),
+    name = "libs",
+    srcs = glob([
+        "libs/**",
+    ]),
 )