Removed linux_code
Change-Id: I7327828d2c9efdf03172d1b90f49d5c51fbba86e
diff --git a/aos/starter/BUILD b/aos/starter/BUILD
new file mode 100644
index 0000000..f890bf6
--- /dev/null
+++ b/aos/starter/BUILD
@@ -0,0 +1,27 @@
+# This target is everything which should get deployed to the robot.
+filegroup(
+ name = 'starter',
+ visibility = ['//visibility:public'],
+ srcs = [
+ 'starter_exe',
+ 'starter.sh',
+ ],
+)
+
+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',
+ ],
+)