blob: 32df43d1c7d41d30f662917e54f6074fb1bc59e1 [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 Silverman88471dc2014-02-15 22:35:42 -080015 '<(AOS)/common/common.gyp:queue_types',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080016 ],
17 },
18 {
19 'target_name': 'log_streamer',
20 'type': 'executable',
21 'sources': [
22 'log_streamer.cc',
23 ],
24 'dependencies': [
25 '<(AOS)/build/aos.gyp:logging',
26 '<(AOS)/linux_code/linux_code.gyp:init',
27 '<(AOS)/common/common.gyp:time',
28 '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue',
29 ],
30 },
31 {
32 'target_name': 'log_displayer',
33 'type': 'executable',
34 'sources': [
35 'log_displayer.cc',
36 ],
37 'dependencies': [
38 '<(AOS)/build/aos.gyp:logging',
39 '<(AOS)/linux_code/linux_code.gyp:init',
Brian Silverman003ba4b2014-02-10 16:56:18 -080040 'binary_log_file',
Brian Silverman88471dc2014-02-15 22:35:42 -080041 '<(AOS)/common/common.gyp:queue_types',
Brian Silverman003ba4b2014-02-10 16:56:18 -080042 ],
43 },
44 {
45 'target_name': 'binary_log_file',
46 'type': 'static_library',
47 'sources': [
48 'binary_log_file.cc',
49 ],
50 'dependencies': [
51 '<(AOS)/build/aos.gyp:logging',
52 ],
53 'export_dependent_settings': [
54 '<(AOS)/build/aos.gyp:logging',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080055 ],
56 },
brians343bc112013-02-10 01:53:46 +000057 ],
58}