blob: 52f8b964866b3e0f1bdb432f4c7fd9d8fca42543 [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',
Brian Silverman003ba4b2014-02-10 16:56:18 -080043 ],
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 Silvermanfe9b7a22014-02-10 15:03:42 -080056 ],
57 },
brians343bc112013-02-10 01:53:46 +000058 ],
59}