blob: 65939dfd735506c26e043a61b709de235d9cfc9a [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',
Ben Fredricksona04c1752014-03-02 22:54:07 +000014 '<(AOS)/common/common.gyp:die',
Brian Silverman003ba4b2014-02-10 16:56:18 -080015 'binary_log_file',
Brian Silverman88471dc2014-02-15 22:35:42 -080016 '<(AOS)/common/common.gyp:queue_types',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080017 ],
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 Silverman003ba4b2014-02-10 16:56:18 -080041 'binary_log_file',
Brian Silverman88471dc2014-02-15 22:35:42 -080042 '<(AOS)/common/common.gyp:queue_types',
Daniel Pettiaa5bdb12014-12-20 16:33:05 -080043 '<(AOS)/linux_code/linux_code.gyp:configuration',
Brian Silverman003ba4b2014-02-10 16:56:18 -080044 ],
45 },
46 {
47 'target_name': 'binary_log_file',
48 'type': 'static_library',
49 'sources': [
50 'binary_log_file.cc',
51 ],
52 'dependencies': [
53 '<(AOS)/build/aos.gyp:logging',
54 ],
55 'export_dependent_settings': [
56 '<(AOS)/build/aos.gyp:logging',
Brian Silvermanfe9b7a22014-02-10 15:03:42 -080057 ],
58 },
brians343bc112013-02-10 01:53:46 +000059 ],
60}