Reduce dependencies of lockless_queue_test
This will hopefully reduce the number of times it runs... Looking at
bazel query, I think I just reshaped the graph, didn't actually clean it
up any.
bazel query 'kind("cc_*", deps(//aos/ipc_lib:lockless_queue_test) intersect //...)' --output=graph | dot -Tx11
Change-Id: Id9a52169195c9856e14261f0382505dd7742a993
diff --git a/aos/BUILD b/aos/BUILD
index 243e7f3..2761cbf 100644
--- a/aos/BUILD
+++ b/aos/BUILD
@@ -5,8 +5,8 @@
name = "prime_binaries",
srcs = [
"//aos:aos_dump",
- "//aos/starter",
"//aos:aos_dump_autocomplete.sh",
+ "//aos/starter",
],
visibility = ["//visibility:public"],
)
@@ -167,6 +167,7 @@
deps = [
"//aos/ipc_lib:aos_sync",
"//aos/time",
+ "//aos/type_traits",
"@com_github_google_glog//:glog",
],
)