blob: 95459f36f8255b8ac782034bc04c2048665daac8 [file] [log] [blame]
brians343bc112013-02-10 01:53:46 +00001{
2 'targets': [
Brian Silverman003ba4b2014-02-10 16:56:18 -08003 # linux_* is dealt with by aos/build/aos.gyp:logging.
Brian Silvermanfe9b7a22014-02-10 15:03:42 -08004 {
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 Silverman003ba4b2014-02-10 16:56:18 -080014 'binary_log_file',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080015 ],
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 Silverman003ba4b2014-02-10 16:56:18 -080039 '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 Silvermanfe9b7a22014-02-10 15:03:42 -080053 ],
54 },
brians343bc112013-02-10 01:53:46 +000055 ],
56}