Fixed building with a bazel with hdrs_check fixed again.

Change-Id: I015f66cd6e02e07efa367b96edd775015ac0abca
diff --git a/aos/common/util/BUILD b/aos/common/util/BUILD
index e2c6b8c..646f3bf 100644
--- a/aos/common/util/BUILD
+++ b/aos/common/util/BUILD
@@ -28,6 +28,9 @@
 
 cc_library(
   name = 'death_test_log_implementation',
+  hdrs = [
+    'death_test_log_implementation.h',
+  ],
   deps = [
     '//aos/common/logging',
   ],
@@ -41,6 +44,10 @@
   hdrs = [
     'inet_addr.h',
   ],
+  deps = [
+    '//aos/common:byteorder',
+    '//aos/common:network_port',
+  ],
 )
 
 cc_library(
@@ -59,6 +66,9 @@
 
 cc_library(
   name = 'log_interval',
+  hdrs = [
+    'log_interval.h',
+  ],
   deps = [
     '//aos/common:time',
     '//aos/common/logging',
@@ -67,6 +77,9 @@
 
 cc_library(
   name = 'string_to_num',
+  hdrs = [
+    'string_to_num.h',
+  ],
 )
 
 cc_test(
@@ -88,6 +101,10 @@
   hdrs = [
     'thread.h',
   ],
+  deps = [
+    '//aos/common:macros',
+    '//aos/common/logging:logging_interface',
+  ],
 )
 
 cc_library(
@@ -138,12 +155,20 @@
   ],
 )
 
+cc_library(
+  name = 'options',
+  hdrs = [
+    'options.h',
+  ],
+)
+
 cc_test(
   name = 'options_test',
   srcs = [
     'options_test.cc',
   ],
   deps = [
+    ':options',
     '//aos/testing:googletest',
   ],
 )