blob: 9f3e1c65b636265c2d634620bbc49d60b3fae896 [file] [log] [blame]
briansf0165ca2013-03-02 06:17:47 +00001{
2 'targets': [
3 {
Brian Silverman01be0002014-05-10 15:44:38 -07004 'target_name': 'death_test_log_implementation',
5 'type': 'static_library',
6 'sources': [
7 #'death_test_log_implementation',
8 ],
9 'dependencies': [
10 '<(AOS)/build/aos.gyp:logging',
11 ],
12 'export_dependent_settings': [
13 '<(AOS)/build/aos.gyp:logging',
14 ],
15 },
16 {
17 'target_name': 'aos_strerror',
18 'type': 'static_library',
19 'sources': [
20 'aos_strerror.cc',
21 ],
22 },
23 {
Brianc1dc7d22014-04-02 12:21:08 -070024 'target_name': 'inet_addr',
25 'type': 'static_library',
26 'sources': [
27 'inet_addr.cc',
28 ],
29 },
30 {
Brian3afd6fc2014-04-02 20:41:49 -070031 'target_name': 'phased_loop',
32 'type': 'static_library',
33 'sources': [
34 'phased_loop.cc',
35 ],
36 'dependencies': [
37 '<(AOS)/build/aos.gyp:logging',
38 '<(AOS)/common/common.gyp:time',
39 ],
40 },
41 {
Brian Silverman01f0d222014-02-16 01:09:11 -080042 'target_name': 'log_interval',
43 'type': 'static_library',
44 'sources': [
45 #'log_interval.h',
46 ],
47 'dependencies': [
48 '<(AOS)/common/common.gyp:time',
49 '<(AOS)/build/aos.gyp:logging',
50 ],
51 'export_dependent_settings': [
52 '<(AOS)/common/common.gyp:time',
53 '<(AOS)/build/aos.gyp:logging',
54 ],
55 },
56 {
Brian Silverman798c7782013-03-28 16:48:02 -070057 'target_name': 'thread',
58 'type': 'static_library',
59 'sources': [
60 'thread.cc',
61 ],
62 'dependencies': [
63 '<(AOS)/common/common.gyp:mutex',
64 ],
65 'export_dependent_settings': [
66 '<(AOS)/common/common.gyp:mutex',
67 ],
68 },
69 {
briansf0165ca2013-03-02 06:17:47 +000070 'target_name': 'trapezoid_profile',
71 'type': 'static_library',
72 'sources': [
73 'trapezoid_profile.cc',
74 ],
75 'dependencies': [
76 '<(EXTERNALS):eigen',
77 '<(AOS)/common/common.gyp:time',
Brian Silverman38ea9bf2014-04-19 22:57:54 -070078 '<(AOS)/build/aos.gyp:logging',
briansf0165ca2013-03-02 06:17:47 +000079 ],
80 'export_dependent_settings': [
81 '<(EXTERNALS):eigen',
82 '<(AOS)/common/common.gyp:time',
83 ],
84 },
85 {
86 'target_name': 'trapezoid_profile_test',
87 'type': 'executable',
88 'sources': [
89 'trapezoid_profile_test.cc',
90 ],
91 'dependencies': [
92 ':trapezoid_profile',
93 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +000094 ],
95 },
Brian Silverman2f594502013-10-16 10:29:47 -070096 {
97 'target_name': 'wrapping_counter',
98 'type': 'static_library',
99 'sources': [
100 'wrapping_counter.cc',
101 ],
102 },
103 {
104 'target_name': 'wrapping_counter_test',
105 'type': 'executable',
106 'sources': [
107 'wrapping_counter_test.cc',
108 ],
109 'dependencies': [
110 'wrapping_counter',
111 '<(EXTERNALS):gtest',
112 ],
113 },
briansf0165ca2013-03-02 06:17:47 +0000114 ],
115}