Finish auto-converting most of the gyp files.
I've also started writing down which ones need manual work.
Change-Id: I442782e1e3352e0de32b612f1bd2c167f231495a
diff --git a/aos/linux_code/BUILD b/aos/linux_code/BUILD
index 7305bc7..63c970c 100644
--- a/aos/linux_code/BUILD
+++ b/aos/linux_code/BUILD
@@ -6,7 +6,7 @@
'dump_rtprio.cc',
],
deps = [
- '//aos/common/logging:logging',
+ '//aos/common/logging',
'//aos/common:time',
],
)
@@ -14,7 +14,10 @@
cc_library(
name = 'complex_thread_local',
srcs = [
- 'complex_thread_local.cc'
+ 'complex_thread_local.cc',
+ ],
+ hdrs = [
+ 'complex_thread_local.h',
],
deps = [
'//aos/common:once',
@@ -31,7 +34,7 @@
':complex_thread_local',
'//third_party/gtest',
'//aos/common/util:thread',
- '//aos/common/logging:logging',
+ '//aos/common/logging',
],
)
@@ -40,21 +43,27 @@
srcs = [
'init.cc',
],
+ hdrs = [
+ 'init.h',
+ ],
deps = [
'//aos/linux_code/ipc_lib:shared_mem',
'//aos/common:die',
- '//aos/common/logging:logging',
+ '//aos/common/logging',
],
)
cc_library(
name = 'configuration',
- src = [
+ srcs = [
'configuration.cc',
],
+ hdrs = [
+ 'configuration.h',
+ ],
deps = [
'//aos/common:once',
- '//aos/common/logging:logging',
+ '//aos/common/logging',
],
)