Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame^] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
| 3 | cc_library( |
| 4 | name = 'linux_interface', |
| 5 | srcs = [ |
| 6 | 'linux_interface.cc', |
| 7 | ], |
| 8 | deps = [ |
| 9 | '//aos/linux_code:complex_thread_local', |
| 10 | '//aos/common:die', |
| 11 | '//aos/common/libc:aos_strerror', |
| 12 | ], |
| 13 | ) |
| 14 | |
| 15 | cc_library( |
| 16 | name = 'linux_logging', |
| 17 | srcs = [ |
| 18 | 'linux_logging.cc', |
| 19 | ], |
| 20 | deps = [ |
| 21 | '//aos/linux_code/ipc_lib:queue', |
| 22 | '//aos/common:time', |
| 23 | ], |
| 24 | ) |
| 25 | |
| 26 | cc_test( |
| 27 | name = 'logging_impl_test', |
| 28 | srcs = [ |
| 29 | 'logging_impl_test.cc', |
| 30 | ], |
| 31 | deps = [ |
| 32 | '//third_party/gtest', |
| 33 | '//aos/common/logging:logging', |
| 34 | ], |
| 35 | ) |
| 36 | |
| 37 | cc_library( |
| 38 | name = 'queue_logging', |
| 39 | srcs = [ |
| 40 | 'queue_logging.cc', |
| 41 | ], |
| 42 | deps = [ |
| 43 | '//aos/common/logging:logging', |
| 44 | '//aos/common:die', |
| 45 | '//aos/common:queue_types', |
| 46 | ], |
| 47 | ) |
| 48 | |
| 49 | cc_library( |
| 50 | name = 'matrix_logging', |
| 51 | srcs = [ |
| 52 | 'matrix_logging.cc', |
| 53 | ], |
| 54 | deps = [ |
| 55 | '//aos/common/logging:logging', |
| 56 | '//aos/common:die', |
| 57 | '//aos/common:queue_types', |
| 58 | '//third_party/eigen', |
| 59 | ], |
| 60 | ) |