brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
Brian Silverman | 01f0d22 | 2014-02-16 01:09:11 -0800 | [diff] [blame] | 4 | '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 Silverman | 798c778 | 2013-03-28 16:48:02 -0700 | [diff] [blame] | 19 | '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 | { |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 32 | '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', |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 55 | ], |
| 56 | }, |
Brian Silverman | 2f59450 | 2013-10-16 10:29:47 -0700 | [diff] [blame] | 57 | { |
| 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 | }, |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 75 | ], |
| 76 | } |