blob: 31b7a17763b363b99a8de059606eee9a965804bf [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",
John Park7bf05bf2019-12-02 21:33:19 -080026 "@com_google_absl//absl/base",
Austin Schuhdde64052019-12-11 20:28:00 -080027 ],
Brian Silverman100534c2015-09-07 15:51:23 -040028)