brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
Brian Silverman | 003ba4b | 2014-02-10 16:56:18 -0800 | [diff] [blame] | 3 | # linux_* is dealt with by aos/build/aos.gyp:logging. |
Brian Silverman | fe9b7a2 | 2014-02-10 15:03:42 -0800 | [diff] [blame] | 4 | { |
Brian Silverman | d057569 | 2015-02-21 16:24:02 -0500 | [diff] [blame] | 5 | 'target_name': 'log_replay', |
| 6 | 'type': 'static_library', |
| 7 | 'sources': [ |
| 8 | 'log_replay.cc', |
| 9 | ], |
| 10 | 'dependencies': [ |
| 11 | 'binary_log_file', |
| 12 | '<(AOS)/common/common.gyp:queues', |
| 13 | '<(AOS)/build/aos.gyp:logging', |
| 14 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue', |
| 15 | ], |
| 16 | }, |
| 17 | { |
Brian Silverman | fe9b7a2 | 2014-02-10 15:03:42 -0800 | [diff] [blame] | 18 | 'target_name': 'binary_log_writer', |
| 19 | 'type': 'executable', |
| 20 | 'sources': [ |
| 21 | 'binary_log_writer.cc', |
| 22 | ], |
| 23 | 'dependencies': [ |
| 24 | '<(AOS)/build/aos.gyp:logging', |
| 25 | '<(AOS)/linux_code/linux_code.gyp:init', |
| 26 | '<(AOS)/linux_code/linux_code.gyp:configuration', |
Ben Fredrickson | a04c175 | 2014-03-02 22:54:07 +0000 | [diff] [blame] | 27 | '<(AOS)/common/common.gyp:die', |
Brian Silverman | 003ba4b | 2014-02-10 16:56:18 -0800 | [diff] [blame] | 28 | 'binary_log_file', |
Brian Silverman | 88471dc | 2014-02-15 22:35:42 -0800 | [diff] [blame] | 29 | '<(AOS)/common/common.gyp:queue_types', |
Brian Silverman | fe9b7a2 | 2014-02-10 15:03:42 -0800 | [diff] [blame] | 30 | ], |
| 31 | }, |
| 32 | { |
| 33 | 'target_name': 'log_streamer', |
| 34 | 'type': 'executable', |
| 35 | 'sources': [ |
| 36 | 'log_streamer.cc', |
| 37 | ], |
| 38 | 'dependencies': [ |
| 39 | '<(AOS)/build/aos.gyp:logging', |
| 40 | '<(AOS)/linux_code/linux_code.gyp:init', |
| 41 | '<(AOS)/common/common.gyp:time', |
| 42 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue', |
| 43 | ], |
| 44 | }, |
| 45 | { |
| 46 | 'target_name': 'log_displayer', |
| 47 | 'type': 'executable', |
| 48 | 'sources': [ |
| 49 | 'log_displayer.cc', |
| 50 | ], |
| 51 | 'dependencies': [ |
| 52 | '<(AOS)/build/aos.gyp:logging', |
| 53 | '<(AOS)/linux_code/linux_code.gyp:init', |
Brian Silverman | 003ba4b | 2014-02-10 16:56:18 -0800 | [diff] [blame] | 54 | 'binary_log_file', |
Brian Silverman | 88471dc | 2014-02-15 22:35:42 -0800 | [diff] [blame] | 55 | '<(AOS)/common/common.gyp:queue_types', |
Daniel Petti | aa5bdb1 | 2014-12-20 16:33:05 -0800 | [diff] [blame] | 56 | '<(AOS)/linux_code/linux_code.gyp:configuration', |
Brian Silverman | 003ba4b | 2014-02-10 16:56:18 -0800 | [diff] [blame] | 57 | ], |
| 58 | }, |
| 59 | { |
| 60 | 'target_name': 'binary_log_file', |
| 61 | 'type': 'static_library', |
| 62 | 'sources': [ |
| 63 | 'binary_log_file.cc', |
| 64 | ], |
| 65 | 'dependencies': [ |
| 66 | '<(AOS)/build/aos.gyp:logging', |
| 67 | ], |
| 68 | 'export_dependent_settings': [ |
| 69 | '<(AOS)/build/aos.gyp:logging', |
Brian Silverman | fe9b7a2 | 2014-02-10 15:03:42 -0800 | [diff] [blame] | 70 | ], |
| 71 | }, |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 72 | ], |
| 73 | } |