blob: 4d9f17debd7b8a70aaaa2a881d6b6ebe8c32351d [file] [log] [blame]
Brian Silverman96d12952015-10-12 13:36:42 -04001# This target is everything which should get deployed to the robot.
2filegroup(
Austin Schuhdde64052019-12-11 20:28:00 -08003 name = "starter",
4 srcs = [
5 "starter.sh",
6 "starter_exe",
7 ],
8 visibility = ["//visibility:public"],
Brian Silverman96d12952015-10-12 13:36:42 -04009)
Brian Silverman100534c2015-09-07 15:51:23 -040010
11cc_binary(
Austin Schuhdde64052019-12-11 20:28:00 -080012 name = "starter_exe",
13 srcs = [
14 "starter.cc",
15 ],
16 deps = [
17 "//aos:init",
18 "//aos:once",
19 "//aos:unique_malloc_ptr",
20 "//aos/libc:aos_strsignal",
21 "//aos/logging",
22 "//aos/logging:implementations",
23 "//aos/time",
24 "//aos/util:run_command",
25 "//third_party/libevent",
26 ],
Brian Silverman100534c2015-09-07 15:51:23 -040027)