blob: 79275c0062087ab108ac9401237cc9ac69b22152 [file] [log] [blame]
briansf0165ca2013-03-02 06:17:47 +00001{
2 'targets': [
3 {
Brian Silverman798c7782013-03-28 16:48:02 -07004 'target_name': 'thread',
5 'type': 'static_library',
6 'sources': [
7 'thread.cc',
8 ],
9 'dependencies': [
10 '<(AOS)/common/common.gyp:mutex',
11 ],
12 'export_dependent_settings': [
13 '<(AOS)/common/common.gyp:mutex',
14 ],
15 },
16 {
briansf0165ca2013-03-02 06:17:47 +000017 'target_name': 'trapezoid_profile',
18 'type': 'static_library',
19 'sources': [
20 'trapezoid_profile.cc',
21 ],
22 'dependencies': [
23 '<(EXTERNALS):eigen',
24 '<(AOS)/common/common.gyp:time',
25 ],
26 'export_dependent_settings': [
27 '<(EXTERNALS):eigen',
28 '<(AOS)/common/common.gyp:time',
29 ],
30 },
31 {
32 'target_name': 'trapezoid_profile_test',
33 'type': 'executable',
34 'sources': [
35 'trapezoid_profile_test.cc',
36 ],
37 'dependencies': [
38 ':trapezoid_profile',
39 '<(EXTERNALS):gtest',
briansf0165ca2013-03-02 06:17:47 +000040 ],
41 },
Brian Silverman2f594502013-10-16 10:29:47 -070042 {
43 'target_name': 'wrapping_counter',
44 'type': 'static_library',
45 'sources': [
46 'wrapping_counter.cc',
47 ],
48 },
49 {
50 'target_name': 'wrapping_counter_test',
51 'type': 'executable',
52 'sources': [
53 'wrapping_counter_test.cc',
54 ],
55 'dependencies': [
56 'wrapping_counter',
57 '<(EXTERNALS):gtest',
58 ],
59 },
briansf0165ca2013-03-02 06:17:47 +000060 ],
61}