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