Convert aos over to flatbuffers
Everything builds, and all the tests pass. I suspect that some entries
are missing from the config files, but those will be found pretty
quickly on startup.
There is no logging or live introspection of queue messages.
Change-Id: I496ee01ed68f202c7851bed7e8786cee30df29f5
diff --git a/aos/mutex/BUILD b/aos/mutex/BUILD
index 43c9616..e698f62 100644
--- a/aos/mutex/BUILD
+++ b/aos/mutex/BUILD
@@ -9,10 +9,9 @@
"mutex.h",
],
deps = [
- "//aos:die",
- "//aos/type_traits:type_traits",
- "//aos/logging",
"//aos/ipc_lib:aos_sync",
+ "//aos/type_traits",
+ "@com_github_google_glog//:glog",
],
)
@@ -22,14 +21,13 @@
"mutex_test.cc",
],
deps = [
- "//aos:die",
":mutex",
- "//aos/time:time",
- "//aos/logging",
- "//aos/util:death_test_log_implementation",
- "//aos/util:thread",
"//aos/testing:googletest",
"//aos/testing:test_logging",
"//aos/testing:test_shm",
+ "//aos/time",
+ "//aos/util:death_test_log_implementation",
+ "//aos/util:thread",
+ "@com_github_google_glog//:glog",
],
)