blob: 682db82d9f671736fa42cd33f0cd8d8b30b88242 [file] [log] [blame]
briansf0165ca2013-03-02 06:17:47 +00001{
2 'targets': [
3 {
Brianc1dc7d22014-04-02 12:21:08 -07004 'target_name': 'inet_addr',
5 'type': 'static_library',
6 'sources': [
7 'inet_addr.cc',
8 ],
9 },
10 {
Brian3afd6fc2014-04-02 20:41:49 -070011 'target_name': 'phased_loop',
12 'type': 'static_library',
13 'sources': [
14 'phased_loop.cc',
15 ],
16 'dependencies': [
17 '<(AOS)/build/aos.gyp:logging',
18 '<(AOS)/common/common.gyp:time',
19 ],
20 },
21 {
Brian Silverman01f0d222014-02-16 01:09:11 -080022 'target_name': 'log_interval',
23 'type': 'static_library',
24 'sources': [
25 #'log_interval.h',
26 ],
27 'dependencies': [
28 '<(AOS)/common/common.gyp:time',
29 '<(AOS)/build/aos.gyp:logging',
30 ],
31 'export_dependent_settings': [
32 '<(AOS)/common/common.gyp:time',
33 '<(AOS)/build/aos.gyp:logging',
34 ],
35 },
36 {
Brian Silverman798c7782013-03-28 16:48:02 -070037 'target_name': 'thread',
38 'type': 'static_library',
39 'sources': [
40 'thread.cc',
41 ],
42 'dependencies': [
43 '<(AOS)/common/common.gyp:mutex',
44 ],
45 'export_dependent_settings': [
46 '<(AOS)/common/common.gyp:mutex',
47 ],
48 },
49 {
briansf0165ca2013-03-02 06:17:47 +000050 'target_name': 'trapezoid_profile',
51 'type': 'static_library',
52 'sources': [
53 'trapezoid_profile.cc',
54 ],
55 'dependencies': [
56 '<(EXTERNALS):eigen',
57 '<(AOS)/common/common.gyp:time',
58 ],
59 'export_dependent_settings': [
60 '<(EXTERNALS):eigen',
61 '<(AOS)/common/common.gyp:time',
62 ],
63 },
64 {
65 'target_name': 'trapezoid_profile_test',
66 'type': 'executable',
67 'sources': [
68 'trapezoid_profile_test.cc',
69 ],
70 'dependencies': [
71 ':trapezoid_profile',
72 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +000073 ],
74 },
Brian Silverman2f594502013-10-16 10:29:47 -070075 {
76 'target_name': 'wrapping_counter',
77 'type': 'static_library',
78 'sources': [
79 'wrapping_counter.cc',
80 ],
81 },
82 {
83 'target_name': 'wrapping_counter_test',
84 'type': 'executable',
85 'sources': [
86 'wrapping_counter_test.cc',
87 ],
88 'dependencies': [
89 'wrapping_counter',
90 '<(EXTERNALS):gtest',
91 ],
92 },
briansf0165ca2013-03-02 06:17:47 +000093 ],
94}