Comran Morshed | daf6923 | 2016-04-20 22:25:37 -0700 | [diff] [blame^] | 1 | load('/aos/externals/seasocks/gen_embedded', 'gen_embedded') |
| 2 | |
| 3 | gen_embedded( |
| 4 | name = 'gen_embedded', |
| 5 | srcs = glob(['www_defaults/**/*'], ['www/**/*']), |
| 6 | ) |
| 7 | |
| 8 | cc_binary( |
| 9 | name = 'dashboard', |
| 10 | visibility = ['//visibility:public'], |
| 11 | srcs = [ |
| 12 | 'dashboard.cc', |
| 13 | 'dashboard.h', |
| 14 | ], |
| 15 | deps = [ |
| 16 | ':gen_embedded', |
| 17 | '//aos/linux_code:init', |
| 18 | '//aos/common/logging', |
| 19 | '//aos/common/util:phased_loop', |
| 20 | '//aos/common:time', |
| 21 | '//third_party/seasocks', |
| 22 | '//y2016/actors:autonomous_action_queue', |
| 23 | '//y2016/vision:vision_queue', |
| 24 | '//y2016/control_loops/superstructure:superstructure_queue', |
| 25 | '//y2016/queues:ball_detector', |
| 26 | ], |
| 27 | ) |