blob: 5e3ac384bc06cb7b0a2369dfaa127a11e71a9a16 [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',
20 '//aos/common:once',
21 '//aos/common:time',
22 '//aos/common/libc:aos_strsignal',
23 '//aos/common/util:run_command',
Austin Schuh044e18b2015-10-21 20:17:09 -070024 '//aos/common:unique_malloc_ptr',
Brian Silverman100534c2015-09-07 15:51:23 -040025 ],
26)