blob: 5008dd84478cbbe2f7c82157b15f66cf4cad19e7 [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',
Brian Silverman653491d2014-05-13 16:53:29 -070023 'thread',
Brian Silvermanaf784862014-05-13 08:14:55 -070024 ],
25 },
26 {
Brian Silverman01be0002014-05-10 15:44:38 -070027 'target_name': 'death_test_log_implementation',
28 'type': 'static_library',
29 'sources': [
30 #'death_test_log_implementation',
31 ],
32 'dependencies': [
33 '<(AOS)/build/aos.gyp:logging',
34 ],
35 'export_dependent_settings': [
36 '<(AOS)/build/aos.gyp:logging',
37 ],
38 },
39 {
Brianc1dc7d22014-04-02 12:21:08 -070040 'target_name': 'inet_addr',
41 'type': 'static_library',
42 'sources': [
43 'inet_addr.cc',
44 ],
45 },
46 {
Brian3afd6fc2014-04-02 20:41:49 -070047 'target_name': 'phased_loop',
48 'type': 'static_library',
49 'sources': [
50 'phased_loop.cc',
51 ],
52 'dependencies': [
53 '<(AOS)/build/aos.gyp:logging',
54 '<(AOS)/common/common.gyp:time',
55 ],
56 },
57 {
Brian Silverman01f0d222014-02-16 01:09:11 -080058 'target_name': 'log_interval',
59 'type': 'static_library',
60 'sources': [
61 #'log_interval.h',
62 ],
63 'dependencies': [
64 '<(AOS)/common/common.gyp:time',
65 '<(AOS)/build/aos.gyp:logging',
66 ],
67 'export_dependent_settings': [
68 '<(AOS)/common/common.gyp:time',
69 '<(AOS)/build/aos.gyp:logging',
70 ],
71 },
72 {
Daniel Pettib6c885b2014-09-12 10:04:28 -070073 'target_name': 'string_to_num',
74 'type': 'static_library',
75 'sources': [
76 #'string_to_num.h',
77 ],
78 },
79 {
80 'target_name': 'string_to_num_test',
81 'type': 'executable',
82 'sources': [
83 'string_to_num_test.cc',
84 ],
85 'dependencies': [
86 ':string_to_num',
87 '<(EXTERNALS):gtest',
88 ],
89 },
90 {
Brian Silverman798c7782013-03-28 16:48:02 -070091 'target_name': 'thread',
92 'type': 'static_library',
93 'sources': [
94 'thread.cc',
95 ],
96 'dependencies': [
97 '<(AOS)/common/common.gyp:mutex',
98 ],
99 'export_dependent_settings': [
100 '<(AOS)/common/common.gyp:mutex',
101 ],
102 },
103 {
briansf0165ca2013-03-02 06:17:47 +0000104 'target_name': 'trapezoid_profile',
105 'type': 'static_library',
106 'sources': [
107 'trapezoid_profile.cc',
108 ],
109 'dependencies': [
110 '<(EXTERNALS):eigen',
111 '<(AOS)/common/common.gyp:time',
Brian Silverman38ea9bf2014-04-19 22:57:54 -0700112 '<(AOS)/build/aos.gyp:logging',
briansf0165ca2013-03-02 06:17:47 +0000113 ],
114 'export_dependent_settings': [
115 '<(EXTERNALS):eigen',
116 '<(AOS)/common/common.gyp:time',
117 ],
118 },
119 {
120 'target_name': 'trapezoid_profile_test',
121 'type': 'executable',
122 'sources': [
123 'trapezoid_profile_test.cc',
124 ],
125 'dependencies': [
126 ':trapezoid_profile',
127 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +0000128 ],
129 },
Brian Silverman2f594502013-10-16 10:29:47 -0700130 {
131 'target_name': 'wrapping_counter',
132 'type': 'static_library',
133 'sources': [
134 'wrapping_counter.cc',
135 ],
136 },
137 {
138 'target_name': 'wrapping_counter_test',
139 'type': 'executable',
140 'sources': [
141 'wrapping_counter_test.cc',
142 ],
143 'dependencies': [
144 'wrapping_counter',
145 '<(EXTERNALS):gtest',
146 ],
147 },
Brian Silverman7faaec72014-05-26 16:25:38 -0700148 {
149 'target_name': 'options_test',
150 'type': 'executable',
151 'sources': [
152 'options_test.cc',
153 ],
154 'dependencies': [
155 '<(EXTERNALS):gtest',
156 ],
157 },
briansf0165ca2013-03-02 06:17:47 +0000158 ],
159}