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 = [ |
| 17 | '//aos/linux_code:init', |
| 18 | '//third_party/libevent', |
| 19 | '//aos/common/logging', |
Brian Silverman | cb5da1f | 2015-12-05 22:19:58 -0500 | [diff] [blame] | 20 | '//aos/common/logging:implementations', |
Sabina Davis | 2ed5ea2 | 2017-09-26 22:27:42 -0700 | [diff] [blame] | 21 | '//aos:once', |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame] | 22 | '//aos/common:time', |
| 23 | '//aos/common/libc:aos_strsignal', |
| 24 | '//aos/common/util:run_command', |
Austin Schuh | 044e18b | 2015-10-21 20:17:09 -0700 | [diff] [blame] | 25 | '//aos/common:unique_malloc_ptr', |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame] | 26 | ], |
| 27 | ) |