Finish auto-converting most of the gyp files.

I've also started writing down which ones need manual work.

Change-Id: I442782e1e3352e0de32b612f1bd2c167f231495a
diff --git a/aos/linux_code/starter/BUILD b/aos/linux_code/starter/BUILD
new file mode 100644
index 0000000..2e5a80c
--- /dev/null
+++ b/aos/linux_code/starter/BUILD
@@ -0,0 +1,17 @@
+package(default_visibility = ['//visibility:public'])
+
+cc_binary(
+  name = 'starter_exe',
+  srcs = [
+    'starter.cc',
+  ],
+  deps = [
+    '//aos/linux_code:init',
+    '//third_party/libevent',
+    '//aos/common/logging',
+    '//aos/common:once',
+    '//aos/common:time',
+    '//aos/common/libc:aos_strsignal',
+    '//aos/common/util:run_command',
+  ],
+)