Fixed building with a bazel with hdrs_check fixed again.
Change-Id: I015f66cd6e02e07efa367b96edd775015ac0abca
diff --git a/aos/linux_code/BUILD b/aos/linux_code/BUILD
index de7f903..6c4d1e0 100644
--- a/aos/linux_code/BUILD
+++ b/aos/linux_code/BUILD
@@ -12,6 +12,14 @@
)
cc_library(
+ name = 'queue',
+ visibility = ['//aos/common:__pkg__'],
+ hdrs = [
+ 'queue-tmpl.h',
+ ],
+)
+
+cc_library(
name = 'complex_thread_local',
srcs = [
'complex_thread_local.cc',
@@ -50,7 +58,7 @@
deps = [
'//aos/linux_code/ipc_lib:shared_mem',
'//aos/common:die',
- '//aos/common/logging',
+ '//aos/linux_code/logging:linux_logging',
],
)
@@ -65,6 +73,7 @@
deps = [
'//aos/common:once',
'//aos/common/logging',
+ '//aos/common:unique_malloc_ptr',
],
)