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 | { |
| 5 | 'target_name': 'binary_log_writer', |
| 6 | 'type': 'executable', |
| 7 | 'sources': [ |
| 8 | 'binary_log_writer.cc', |
| 9 | ], |
| 10 | 'dependencies': [ |
| 11 | '<(AOS)/build/aos.gyp:logging', |
| 12 | '<(AOS)/linux_code/linux_code.gyp:init', |
| 13 | '<(AOS)/linux_code/linux_code.gyp:configuration', |
Ben Fredrickson | a04c175 | 2014-03-02 22:54:07 +0000 | [diff] [blame^] | 14 | '<(AOS)/common/common.gyp:die', |
Brian Silverman | 003ba4b | 2014-02-10 16:56:18 -0800 | [diff] [blame] | 15 | 'binary_log_file', |
Brian Silverman | 88471dc | 2014-02-15 22:35:42 -0800 | [diff] [blame] | 16 | '<(AOS)/common/common.gyp:queue_types', |
Brian Silverman | fe9b7a2 | 2014-02-10 15:03:42 -0800 | [diff] [blame] | 17 | ], |
| 18 | }, |
| 19 | { |
| 20 | 'target_name': 'log_streamer', |
| 21 | 'type': 'executable', |
| 22 | 'sources': [ |
| 23 | 'log_streamer.cc', |
| 24 | ], |
| 25 | 'dependencies': [ |
| 26 | '<(AOS)/build/aos.gyp:logging', |
| 27 | '<(AOS)/linux_code/linux_code.gyp:init', |
| 28 | '<(AOS)/common/common.gyp:time', |
| 29 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue', |
| 30 | ], |
| 31 | }, |
| 32 | { |
| 33 | 'target_name': 'log_displayer', |
| 34 | 'type': 'executable', |
| 35 | 'sources': [ |
| 36 | 'log_displayer.cc', |
| 37 | ], |
| 38 | 'dependencies': [ |
| 39 | '<(AOS)/build/aos.gyp:logging', |
| 40 | '<(AOS)/linux_code/linux_code.gyp:init', |
Brian Silverman | 003ba4b | 2014-02-10 16:56:18 -0800 | [diff] [blame] | 41 | 'binary_log_file', |
Brian Silverman | 88471dc | 2014-02-15 22:35:42 -0800 | [diff] [blame] | 42 | '<(AOS)/common/common.gyp:queue_types', |
Brian Silverman | 003ba4b | 2014-02-10 16:56:18 -0800 | [diff] [blame] | 43 | ], |
| 44 | }, |
| 45 | { |
| 46 | 'target_name': 'binary_log_file', |
| 47 | 'type': 'static_library', |
| 48 | 'sources': [ |
| 49 | 'binary_log_file.cc', |
| 50 | ], |
| 51 | 'dependencies': [ |
| 52 | '<(AOS)/build/aos.gyp:logging', |
| 53 | ], |
| 54 | 'export_dependent_settings': [ |
| 55 | '<(AOS)/build/aos.gyp:logging', |
Brian Silverman | fe9b7a2 | 2014-02-10 15:03:42 -0800 | [diff] [blame] | 56 | ], |
| 57 | }, |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 58 | ], |
| 59 | } |