blob: 7c0adf335c5b58c7602a8a77cb8111246cc9652a [file] [log] [blame]
briansf0165ca2013-03-02 06:17:47 +00001{
2 'targets': [
3 {
Brian Silvermanaf784862014-05-13 08:14:55 -07004 'target_name': 'run_command',
5 'type': 'static_library',
6 'sources': [
7 'run_command.cc',
8 ],
9 'dependencies': [
10 '<(AOS)/build/aos.gyp:logging_interface',
11 ],
12 },
13 {
14 'target_name': 'run_command_test',
15 'type': 'executable',
16 'sources': [
17 'run_command_test.cc',
18 ],
19 'dependencies': [
20 'run_command',
21 '<(EXTERNALS):gtest',
22 '<(AOS)/build/aos.gyp:logging',
23 ],
24 },
25 {
Brian Silverman01be0002014-05-10 15:44:38 -070026 'target_name': 'death_test_log_implementation',
27 'type': 'static_library',
28 'sources': [
29 #'death_test_log_implementation',
30 ],
31 'dependencies': [
32 '<(AOS)/build/aos.gyp:logging',
33 ],
34 'export_dependent_settings': [
35 '<(AOS)/build/aos.gyp:logging',
36 ],
37 },
38 {
Brianc1dc7d22014-04-02 12:21:08 -070039 'target_name': 'inet_addr',
40 'type': 'static_library',
41 'sources': [
42 'inet_addr.cc',
43 ],
44 },
45 {
Brian3afd6fc2014-04-02 20:41:49 -070046 'target_name': 'phased_loop',
47 'type': 'static_library',
48 'sources': [
49 'phased_loop.cc',
50 ],
51 'dependencies': [
52 '<(AOS)/build/aos.gyp:logging',
53 '<(AOS)/common/common.gyp:time',
54 ],
55 },
56 {
Brian Silverman01f0d222014-02-16 01:09:11 -080057 'target_name': 'log_interval',
58 'type': 'static_library',
59 'sources': [
60 #'log_interval.h',
61 ],
62 'dependencies': [
63 '<(AOS)/common/common.gyp:time',
64 '<(AOS)/build/aos.gyp:logging',
65 ],
66 'export_dependent_settings': [
67 '<(AOS)/common/common.gyp:time',
68 '<(AOS)/build/aos.gyp:logging',
69 ],
70 },
71 {
Brian Silverman798c7782013-03-28 16:48:02 -070072 'target_name': 'thread',
73 'type': 'static_library',
74 'sources': [
75 'thread.cc',
76 ],
77 'dependencies': [
78 '<(AOS)/common/common.gyp:mutex',
79 ],
80 'export_dependent_settings': [
81 '<(AOS)/common/common.gyp:mutex',
82 ],
83 },
84 {
briansf0165ca2013-03-02 06:17:47 +000085 'target_name': 'trapezoid_profile',
86 'type': 'static_library',
87 'sources': [
88 'trapezoid_profile.cc',
89 ],
90 'dependencies': [
91 '<(EXTERNALS):eigen',
92 '<(AOS)/common/common.gyp:time',
Brian Silverman38ea9bf2014-04-19 22:57:54 -070093 '<(AOS)/build/aos.gyp:logging',
briansf0165ca2013-03-02 06:17:47 +000094 ],
95 'export_dependent_settings': [
96 '<(EXTERNALS):eigen',
97 '<(AOS)/common/common.gyp:time',
98 ],
99 },
100 {
101 'target_name': 'trapezoid_profile_test',
102 'type': 'executable',
103 'sources': [
104 'trapezoid_profile_test.cc',
105 ],
106 'dependencies': [
107 ':trapezoid_profile',
108 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +0000109 ],
110 },
Brian Silverman2f594502013-10-16 10:29:47 -0700111 {
112 'target_name': 'wrapping_counter',
113 'type': 'static_library',
114 'sources': [
115 'wrapping_counter.cc',
116 ],
117 },
118 {
119 'target_name': 'wrapping_counter_test',
120 'type': 'executable',
121 'sources': [
122 'wrapping_counter_test.cc',
123 ],
124 'dependencies': [
125 'wrapping_counter',
126 '<(EXTERNALS):gtest',
127 ],
128 },
briansf0165ca2013-03-02 06:17:47 +0000129 ],
130}