blob: b20a7d91ed64763ab12cdd5dc875c478d81ec1cc [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',
Brian Silverman38ea9bf2014-04-19 22:57:54 -070058 '<(AOS)/build/aos.gyp:logging',
briansf0165ca2013-03-02 06:17:47 +000059 ],
60 'export_dependent_settings': [
61 '<(EXTERNALS):eigen',
62 '<(AOS)/common/common.gyp:time',
63 ],
64 },
65 {
66 'target_name': 'trapezoid_profile_test',
67 'type': 'executable',
68 'sources': [
69 'trapezoid_profile_test.cc',
70 ],
71 'dependencies': [
72 ':trapezoid_profile',
73 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +000074 ],
75 },
Brian Silverman2f594502013-10-16 10:29:47 -070076 {
77 'target_name': 'wrapping_counter',
78 'type': 'static_library',
79 'sources': [
80 'wrapping_counter.cc',
81 ],
82 },
83 {
84 'target_name': 'wrapping_counter_test',
85 'type': 'executable',
86 'sources': [
87 'wrapping_counter_test.cc',
88 ],
89 'dependencies': [
90 'wrapping_counter',
91 '<(EXTERNALS):gtest',
92 ],
93 },
briansf0165ca2013-03-02 06:17:47 +000094 ],
95}