blob: 74af77de448ef4607e0f1fbc350a30e633ca93e3 [file] [log] [blame]
Brian Silverman96d12952015-10-12 13:36:42 -04001# This target is everything which should get deployed to the robot.
2filegroup(
3 name = 'starter',
4 visibility = ['//visibility:public'],
5 srcs = [
6 'starter_exe',
7 'starter.sh',
8 ],
9)
Brian Silverman100534c2015-09-07 15:51:23 -040010
11cc_binary(
12 name = 'starter_exe',
13 srcs = [
14 'starter.cc',
15 ],
16 deps = [
17 '//aos/linux_code:init',
18 '//third_party/libevent',
19 '//aos/common/logging',
Brian Silvermancb5da1f2015-12-05 22:19:58 -050020 '//aos/common/logging:implementations',
Sabina Davis2ed5ea22017-09-26 22:27:42 -070021 '//aos:once',
Brian Silverman100534c2015-09-07 15:51:23 -040022 '//aos/common:time',
23 '//aos/common/libc:aos_strsignal',
24 '//aos/common/util:run_command',
Austin Schuh044e18b2015-10-21 20:17:09 -070025 '//aos/common:unique_malloc_ptr',
Brian Silverman100534c2015-09-07 15:51:23 -040026 ],
27)