Austin Schuh | 8d5fff4 | 2018-05-30 20:44:12 -0700 | [diff] [blame] | 1 | load("//aos/build:queues.bzl", "queue_library") |
| 2 | |
Parker Schuh | c1975fc | 2018-04-07 15:27:07 -0700 | [diff] [blame] | 3 | cc_binary( |
Austin Schuh | 8d5fff4 | 2018-05-30 20:44:12 -0700 | [diff] [blame] | 4 | name = "image_streamer", |
| 5 | srcs = ["image_streamer.cc"], |
| 6 | deps = [ |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 7 | "//aos/logging", |
| 8 | "//aos/logging:implementations", |
Austin Schuh | 8d5fff4 | 2018-05-30 20:44:12 -0700 | [diff] [blame] | 9 | "//aos/vision/blob:codec", |
| 10 | "//aos/vision/events:epoll_events", |
| 11 | "//aos/vision/events:socket_types", |
| 12 | "//aos/vision/events:udp", |
| 13 | "//aos/vision/image:image_stream", |
| 14 | "//aos/vision/image:reader", |
Austin Schuh | 8d5fff4 | 2018-05-30 20:44:12 -0700 | [diff] [blame] | 15 | "//y2018:vision_proto", |
Brian Silverman | 16a923c | 2018-10-31 19:40:51 -0700 | [diff] [blame] | 16 | "@com_github_gflags_gflags//:gflags", |
Austin Schuh | 8d5fff4 | 2018-05-30 20:44:12 -0700 | [diff] [blame] | 17 | ], |
| 18 | ) |
| 19 | |
| 20 | queue_library( |
| 21 | name = "vision_queue", |
| 22 | srcs = [ |
| 23 | "vision.q", |
| 24 | ], |
| 25 | visibility = ["//visibility:public"], |
| 26 | ) |
| 27 | |
| 28 | cc_binary( |
| 29 | name = "vision_status", |
| 30 | srcs = [ |
| 31 | "vision_status.cc", |
| 32 | ], |
| 33 | visibility = ["//visibility:public"], |
| 34 | deps = [ |
| 35 | ":vision_queue", |
Brian Silverman | 16a923c | 2018-10-31 19:40:51 -0700 | [diff] [blame] | 36 | "//aos:init", |
Austin Schuh | 300f2f6 | 2019-05-27 13:49:23 -0700 | [diff] [blame] | 37 | "//aos/events:shm-event-loop", |
John Park | 33858a3 | 2018-09-28 23:05:48 -0700 | [diff] [blame] | 38 | "//aos/logging", |
| 39 | "//aos/logging:queue_logging", |
Brian Silverman | 16a923c | 2018-10-31 19:40:51 -0700 | [diff] [blame] | 40 | "//aos/time", |
Austin Schuh | 8d5fff4 | 2018-05-30 20:44:12 -0700 | [diff] [blame] | 41 | "//aos/vision/events:udp", |
| 42 | "//y2018:vision_proto", |
| 43 | ], |
Parker Schuh | c1975fc | 2018-04-07 15:27:07 -0700 | [diff] [blame] | 44 | ) |