brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
Brian | c1dc7d2 | 2014-04-02 12:21:08 -0700 | [diff] [blame] | 4 | 'target_name': 'inet_addr', |
| 5 | 'type': 'static_library', |
| 6 | 'sources': [ |
| 7 | 'inet_addr.cc', |
| 8 | ], |
| 9 | }, |
| 10 | { |
Brian | 3afd6fc | 2014-04-02 20:41:49 -0700 | [diff] [blame^] | 11 | '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 Silverman | 01f0d22 | 2014-02-16 01:09:11 -0800 | [diff] [blame] | 22 | '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 Silverman | 798c778 | 2013-03-28 16:48:02 -0700 | [diff] [blame] | 37 | '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 | { |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 50 | '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', |
| 58 | ], |
| 59 | 'export_dependent_settings': [ |
| 60 | '<(EXTERNALS):eigen', |
| 61 | '<(AOS)/common/common.gyp:time', |
| 62 | ], |
| 63 | }, |
| 64 | { |
| 65 | 'target_name': 'trapezoid_profile_test', |
| 66 | 'type': 'executable', |
| 67 | 'sources': [ |
| 68 | 'trapezoid_profile_test.cc', |
| 69 | ], |
| 70 | 'dependencies': [ |
| 71 | ':trapezoid_profile', |
| 72 | '<(EXTERNALS):gtest', |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 73 | ], |
| 74 | }, |
Brian Silverman | 2f59450 | 2013-10-16 10:29:47 -0700 | [diff] [blame] | 75 | { |
| 76 | 'target_name': 'wrapping_counter', |
| 77 | 'type': 'static_library', |
| 78 | 'sources': [ |
| 79 | 'wrapping_counter.cc', |
| 80 | ], |
| 81 | }, |
| 82 | { |
| 83 | 'target_name': 'wrapping_counter_test', |
| 84 | 'type': 'executable', |
| 85 | 'sources': [ |
| 86 | 'wrapping_counter_test.cc', |
| 87 | ], |
| 88 | 'dependencies': [ |
| 89 | 'wrapping_counter', |
| 90 | '<(EXTERNALS):gtest', |
| 91 | ], |
| 92 | }, |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 93 | ], |
| 94 | } |