blob: 6dd2aa255703774742b4c974003616fd96a1dcad [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 {
Brian Silverman01f0d222014-02-16 01:09:11 -080011 'target_name': 'log_interval',
12 'type': 'static_library',
13 'sources': [
14 #'log_interval.h',
15 ],
16 'dependencies': [
17 '<(AOS)/common/common.gyp:time',
18 '<(AOS)/build/aos.gyp:logging',
19 ],
20 'export_dependent_settings': [
21 '<(AOS)/common/common.gyp:time',
22 '<(AOS)/build/aos.gyp:logging',
23 ],
24 },
25 {
Brian Silverman798c7782013-03-28 16:48:02 -070026 'target_name': 'thread',
27 'type': 'static_library',
28 'sources': [
29 'thread.cc',
30 ],
31 'dependencies': [
32 '<(AOS)/common/common.gyp:mutex',
33 ],
34 'export_dependent_settings': [
35 '<(AOS)/common/common.gyp:mutex',
36 ],
37 },
38 {
briansf0165ca2013-03-02 06:17:47 +000039 'target_name': 'trapezoid_profile',
40 'type': 'static_library',
41 'sources': [
42 'trapezoid_profile.cc',
43 ],
44 'dependencies': [
45 '<(EXTERNALS):eigen',
46 '<(AOS)/common/common.gyp:time',
47 ],
48 'export_dependent_settings': [
49 '<(EXTERNALS):eigen',
50 '<(AOS)/common/common.gyp:time',
51 ],
52 },
53 {
54 'target_name': 'trapezoid_profile_test',
55 'type': 'executable',
56 'sources': [
57 'trapezoid_profile_test.cc',
58 ],
59 'dependencies': [
60 ':trapezoid_profile',
61 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +000062 ],
63 },
Brian Silverman2f594502013-10-16 10:29:47 -070064 {
65 'target_name': 'wrapping_counter',
66 'type': 'static_library',
67 'sources': [
68 'wrapping_counter.cc',
69 ],
70 },
71 {
72 'target_name': 'wrapping_counter_test',
73 'type': 'executable',
74 'sources': [
75 'wrapping_counter_test.cc',
76 ],
77 'dependencies': [
78 'wrapping_counter',
79 '<(EXTERNALS):gtest',
80 ],
81 },
briansf0165ca2013-03-02 06:17:47 +000082 ],
83}