blob: 98f1a3d2071ea8685b3fb391d53aca2d166aab54 [file] [log] [blame]
briansf0165ca2013-03-02 06:17:47 +00001{
2 'targets': [
3 {
Brian Silverman01f0d222014-02-16 01:09:11 -08004 'target_name': 'log_interval',
5 'type': 'static_library',
6 'sources': [
7 #'log_interval.h',
8 ],
9 'dependencies': [
10 '<(AOS)/common/common.gyp:time',
11 '<(AOS)/build/aos.gyp:logging',
12 ],
13 'export_dependent_settings': [
14 '<(AOS)/common/common.gyp:time',
15 '<(AOS)/build/aos.gyp:logging',
16 ],
17 },
18 {
Brian Silverman798c7782013-03-28 16:48:02 -070019 'target_name': 'thread',
20 'type': 'static_library',
21 'sources': [
22 'thread.cc',
23 ],
24 'dependencies': [
25 '<(AOS)/common/common.gyp:mutex',
26 ],
27 'export_dependent_settings': [
28 '<(AOS)/common/common.gyp:mutex',
29 ],
30 },
31 {
briansf0165ca2013-03-02 06:17:47 +000032 'target_name': 'trapezoid_profile',
33 'type': 'static_library',
34 'sources': [
35 'trapezoid_profile.cc',
36 ],
37 'dependencies': [
38 '<(EXTERNALS):eigen',
39 '<(AOS)/common/common.gyp:time',
40 ],
41 'export_dependent_settings': [
42 '<(EXTERNALS):eigen',
43 '<(AOS)/common/common.gyp:time',
44 ],
45 },
46 {
47 'target_name': 'trapezoid_profile_test',
48 'type': 'executable',
49 'sources': [
50 'trapezoid_profile_test.cc',
51 ],
52 'dependencies': [
53 ':trapezoid_profile',
54 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +000055 ],
56 },
Brian Silverman2f594502013-10-16 10:29:47 -070057 {
58 'target_name': 'wrapping_counter',
59 'type': 'static_library',
60 'sources': [
61 'wrapping_counter.cc',
62 ],
63 },
64 {
65 'target_name': 'wrapping_counter_test',
66 'type': 'executable',
67 'sources': [
68 'wrapping_counter_test.cc',
69 ],
70 'dependencies': [
71 'wrapping_counter',
72 '<(EXTERNALS):gtest',
73 ],
74 },
briansf0165ca2013-03-02 06:17:47 +000075 ],
76}