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/aos/starter/BUILD b/aos/starter/BUILD
index f890bf6..4d9f17d 100644
--- a/aos/starter/BUILD
+++ b/aos/starter/BUILD
@@ -1,27 +1,27 @@
# This target is everything which should get deployed to the robot.
filegroup(
- name = 'starter',
- visibility = ['//visibility:public'],
- srcs = [
- 'starter_exe',
- 'starter.sh',
- ],
+ name = "starter",
+ srcs = [
+ "starter.sh",
+ "starter_exe",
+ ],
+ visibility = ["//visibility:public"],
)
cc_binary(
- name = 'starter_exe',
- srcs = [
- 'starter.cc',
- ],
- deps = [
- '//aos:init',
- '//third_party/libevent',
- '//aos/logging',
- '//aos/logging:implementations',
- '//aos:once',
- '//aos/time:time',
- '//aos/libc:aos_strsignal',
- '//aos/util:run_command',
- '//aos:unique_malloc_ptr',
- ],
+ name = "starter_exe",
+ srcs = [
+ "starter.cc",
+ ],
+ deps = [
+ "//aos:init",
+ "//aos:once",
+ "//aos:unique_malloc_ptr",
+ "//aos/libc:aos_strsignal",
+ "//aos/logging",
+ "//aos/logging:implementations",
+ "//aos/time",
+ "//aos/util:run_command",
+ "//third_party/libevent",
+ ],
)