Brian Silverman | 96d1295 | 2015-10-12 13:36:42 -0400 | [diff] [blame] | 1 | # This target is everything which should get deployed to the robot. |
| 2 | filegroup( |
| 3 | name = 'starter', |
| 4 | visibility = ['//visibility:public'], |
| 5 | srcs = [ |
| 6 | 'starter_exe', |
| 7 | 'starter.sh', |
| 8 | ], |
| 9 | ) |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame] | 10 | |
| 11 | cc_binary( |
| 12 | name = 'starter_exe', |
| 13 | srcs = [ |
| 14 | 'starter.cc', |
| 15 | ], |
| 16 | deps = [ |
John Park | 398c74a | 2018-10-20 21:17:39 -0700 | [diff] [blame^] | 17 | '//aos:init', |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame] | 18 | '//third_party/libevent', |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 19 | '//aos/logging', |
| 20 | '//aos/logging:implementations', |
Sabina Davis | 2ed5ea2 | 2017-09-26 22:27:42 -0700 | [diff] [blame] | 21 | '//aos:once', |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 22 | '//aos/time:time', |
| 23 | '//aos/libc:aos_strsignal', |
| 24 | '//aos/util:run_command', |
| 25 | '//aos:unique_malloc_ptr', |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame] | 26 | ], |
| 27 | ) |