blob: f890bf694868538c0e97d14a088097fcd5a25c14 [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 = [
John Park398c74a2018-10-20 21:17:39 -070017 '//aos:init',
Brian Silverman100534c2015-09-07 15:51:23 -040018 '//third_party/libevent',
John Park33858a32018-09-28 23:05:48 -070019 '//aos/logging',
20 '//aos/logging:implementations',
Sabina Davis2ed5ea22017-09-26 22:27:42 -070021 '//aos:once',
John Park33858a32018-09-28 23:05:48 -070022 '//aos/time:time',
23 '//aos/libc:aos_strsignal',
24 '//aos/util:run_command',
25 '//aos:unique_malloc_ptr',
Brian Silverman100534c2015-09-07 15:51:23 -040026 ],
27)