Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
| 3 | cc_library( |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 4 | name = 'log_replay', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 5 | srcs = [ |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 6 | 'log_replay.cc', |
| 7 | ], |
| 8 | hdrs = [ |
| 9 | 'log_replay.h', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 10 | ], |
| 11 | deps = [ |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 12 | ':binary_log_file', |
| 13 | '//aos/common:queues', |
| 14 | '//aos/common/logging', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 15 | '//aos/linux_code/ipc_lib:queue', |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 16 | ], |
| 17 | ) |
| 18 | |
| 19 | cc_binary( |
| 20 | name = 'binary_log_writer', |
| 21 | srcs = [ |
| 22 | 'binary_log_writer.cc', |
| 23 | ], |
| 24 | deps = [ |
| 25 | '//aos/common/logging', |
| 26 | '//aos/linux_code:init', |
| 27 | '//aos/linux_code:configuration', |
| 28 | '//aos/common:die', |
| 29 | ':binary_log_file', |
| 30 | '//aos/common:queue_types', |
| 31 | ], |
| 32 | ) |
| 33 | |
| 34 | cc_binary( |
| 35 | name = 'log_streamer', |
| 36 | srcs = [ |
| 37 | 'log_streamer.cc', |
| 38 | ], |
| 39 | deps = [ |
| 40 | '//aos/common/logging', |
| 41 | '//aos/linux_code:init', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 42 | '//aos/common:time', |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 43 | '//aos/linux_code/ipc_lib:queue', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 44 | ], |
| 45 | ) |
| 46 | |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 47 | cc_binary( |
| 48 | name = 'log_displayer', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 49 | srcs = [ |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 50 | 'log_displayer.cc', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 51 | ], |
| 52 | deps = [ |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 53 | '//aos/common/logging', |
| 54 | '//aos/linux_code:init', |
| 55 | ':binary_log_file', |
| 56 | '//aos/common:queue_types', |
| 57 | '//aos/linux_code:configuration', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 58 | ], |
| 59 | ) |
| 60 | |
| 61 | cc_library( |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 62 | name = 'binary_log_file', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 63 | srcs = [ |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 64 | 'binary_log_file.cc', |
| 65 | ], |
| 66 | hdrs = [ |
| 67 | 'binary_log_file.h', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 68 | ], |
| 69 | deps = [ |
Brian Silverman | 100534c | 2015-09-07 15:51:23 -0400 | [diff] [blame^] | 70 | '//aos/common/logging', |
Austin Schuh | f073651 | 2015-09-07 01:22:16 -0700 | [diff] [blame] | 71 | ], |
| 72 | ) |