blob: ec6ce7f37748d395fcd2ad5a203b3af12666f049 [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',
Brian Silverman100534c2015-09-07 15:51:23 -040021 '//aos/common:once',
22 '//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)