Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame^] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
| 3 | cc_binary( |
| 4 | name = 'dump_rtprio', |
| 5 | srcs = [ |
| 6 | 'dump_rtprio.cc', |
| 7 | ], |
| 8 | deps = [ |
| 9 | '//aos/common/logging:logging', |
| 10 | '//aos/common:time', |
| 11 | ], |
| 12 | ) |
| 13 | |
| 14 | cc_library( |
| 15 | name = 'complex_thread_local', |
| 16 | srcs = [ |
| 17 | 'complex_thread_local.cc' |
| 18 | ], |
| 19 | deps = [ |
| 20 | '//aos/common:once', |
| 21 | '//aos/common:die', |
| 22 | ], |
| 23 | ) |
| 24 | |
| 25 | cc_test( |
| 26 | name = 'complex_thread_local_test', |
| 27 | srcs = [ |
| 28 | 'complex_thread_local_test.cc', |
| 29 | ], |
| 30 | deps = [ |
| 31 | ':complex_thread_local', |
| 32 | '//third_party/gtest', |
| 33 | '//aos/common/util:thread', |
| 34 | '//aos/common/logging:logging', |
| 35 | ], |
| 36 | ) |
| 37 | |
| 38 | cc_library( |
| 39 | name = 'init', |
| 40 | srcs = [ |
| 41 | 'init.cc', |
| 42 | ], |
| 43 | deps = [ |
| 44 | '//aos/linux_code/ipc_lib:shared_mem', |
| 45 | '//aos/common:die', |
| 46 | '//aos/common/logging:logging', |
| 47 | ], |
| 48 | ) |
| 49 | |
| 50 | cc_library( |
| 51 | name = 'configuration', |
| 52 | src = [ |
| 53 | 'configuration.cc', |
| 54 | ], |
| 55 | deps = [ |
| 56 | '//aos/common:once', |
| 57 | '//aos/common/logging:logging', |
| 58 | ], |
| 59 | ) |
| 60 | |
| 61 | cc_binary( |
| 62 | name = 'core', |
| 63 | srcs = [ |
| 64 | 'core.cc', |
| 65 | ], |
| 66 | deps = [ |
| 67 | ':init', |
| 68 | '//aos/common/util:run_command', |
| 69 | ], |
| 70 | ) |