Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame^] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
| 3 | cc_library( |
| 4 | name = 'logging_interface', |
| 5 | srcs = [ |
| 6 | 'logging_interface.cc', |
| 7 | ], |
| 8 | deps = [ |
| 9 | '//aos/linux_code/logging:linux_interface', |
| 10 | '//aos/common:die', |
| 11 | '//aos/common/libc:aos_strerror', |
| 12 | ], |
| 13 | ) |
| 14 | |
| 15 | cc_library( |
| 16 | name = 'logging', |
| 17 | srcs = [ |
| 18 | 'logging_impl.cc', |
| 19 | ], |
| 20 | deps = [ |
| 21 | '//aos/linux_code/logging:linux_logging', |
| 22 | '//aos/common:time', |
| 23 | '//aos/common:once', |
| 24 | ':logging_interface', |
| 25 | '//aos/common:queue_types', |
| 26 | ], |
| 27 | ) |