brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
Brian Silverman | af78486 | 2014-05-13 08:14:55 -0700 | [diff] [blame] | 4 | 'target_name': 'run_command', |
| 5 | 'type': 'static_library', |
| 6 | 'sources': [ |
| 7 | 'run_command.cc', |
| 8 | ], |
| 9 | 'dependencies': [ |
| 10 | '<(AOS)/build/aos.gyp:logging_interface', |
| 11 | ], |
| 12 | }, |
| 13 | { |
| 14 | 'target_name': 'run_command_test', |
| 15 | 'type': 'executable', |
| 16 | 'sources': [ |
| 17 | 'run_command_test.cc', |
| 18 | ], |
| 19 | 'dependencies': [ |
| 20 | 'run_command', |
| 21 | '<(EXTERNALS):gtest', |
| 22 | '<(AOS)/build/aos.gyp:logging', |
Brian Silverman | 653491d | 2014-05-13 16:53:29 -0700 | [diff] [blame] | 23 | 'thread', |
Brian Silverman | af78486 | 2014-05-13 08:14:55 -0700 | [diff] [blame] | 24 | ], |
| 25 | }, |
| 26 | { |
Brian Silverman | 01be000 | 2014-05-10 15:44:38 -0700 | [diff] [blame] | 27 | 'target_name': 'death_test_log_implementation', |
| 28 | 'type': 'static_library', |
| 29 | 'sources': [ |
| 30 | #'death_test_log_implementation', |
| 31 | ], |
| 32 | 'dependencies': [ |
| 33 | '<(AOS)/build/aos.gyp:logging', |
| 34 | ], |
| 35 | 'export_dependent_settings': [ |
| 36 | '<(AOS)/build/aos.gyp:logging', |
| 37 | ], |
| 38 | }, |
| 39 | { |
Brian | c1dc7d2 | 2014-04-02 12:21:08 -0700 | [diff] [blame] | 40 | 'target_name': 'inet_addr', |
| 41 | 'type': 'static_library', |
| 42 | 'sources': [ |
| 43 | 'inet_addr.cc', |
| 44 | ], |
| 45 | }, |
| 46 | { |
Brian | 3afd6fc | 2014-04-02 20:41:49 -0700 | [diff] [blame] | 47 | 'target_name': 'phased_loop', |
| 48 | 'type': 'static_library', |
| 49 | 'sources': [ |
| 50 | 'phased_loop.cc', |
| 51 | ], |
| 52 | 'dependencies': [ |
| 53 | '<(AOS)/build/aos.gyp:logging', |
| 54 | '<(AOS)/common/common.gyp:time', |
| 55 | ], |
| 56 | }, |
| 57 | { |
Brian Silverman | 01f0d22 | 2014-02-16 01:09:11 -0800 | [diff] [blame] | 58 | 'target_name': 'log_interval', |
| 59 | 'type': 'static_library', |
| 60 | 'sources': [ |
| 61 | #'log_interval.h', |
| 62 | ], |
| 63 | 'dependencies': [ |
| 64 | '<(AOS)/common/common.gyp:time', |
| 65 | '<(AOS)/build/aos.gyp:logging', |
| 66 | ], |
| 67 | 'export_dependent_settings': [ |
| 68 | '<(AOS)/common/common.gyp:time', |
| 69 | '<(AOS)/build/aos.gyp:logging', |
| 70 | ], |
| 71 | }, |
| 72 | { |
Brian Silverman | 798c778 | 2013-03-28 16:48:02 -0700 | [diff] [blame] | 73 | 'target_name': 'thread', |
| 74 | 'type': 'static_library', |
| 75 | 'sources': [ |
| 76 | 'thread.cc', |
| 77 | ], |
| 78 | 'dependencies': [ |
| 79 | '<(AOS)/common/common.gyp:mutex', |
| 80 | ], |
| 81 | 'export_dependent_settings': [ |
| 82 | '<(AOS)/common/common.gyp:mutex', |
| 83 | ], |
| 84 | }, |
| 85 | { |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 86 | 'target_name': 'trapezoid_profile', |
| 87 | 'type': 'static_library', |
| 88 | 'sources': [ |
| 89 | 'trapezoid_profile.cc', |
| 90 | ], |
| 91 | 'dependencies': [ |
| 92 | '<(EXTERNALS):eigen', |
| 93 | '<(AOS)/common/common.gyp:time', |
Brian Silverman | 38ea9bf | 2014-04-19 22:57:54 -0700 | [diff] [blame] | 94 | '<(AOS)/build/aos.gyp:logging', |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 95 | ], |
| 96 | 'export_dependent_settings': [ |
| 97 | '<(EXTERNALS):eigen', |
| 98 | '<(AOS)/common/common.gyp:time', |
| 99 | ], |
| 100 | }, |
| 101 | { |
| 102 | 'target_name': 'trapezoid_profile_test', |
| 103 | 'type': 'executable', |
| 104 | 'sources': [ |
| 105 | 'trapezoid_profile_test.cc', |
| 106 | ], |
| 107 | 'dependencies': [ |
| 108 | ':trapezoid_profile', |
| 109 | '<(EXTERNALS):gtest', |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 110 | ], |
| 111 | }, |
Brian Silverman | 2f59450 | 2013-10-16 10:29:47 -0700 | [diff] [blame] | 112 | { |
| 113 | 'target_name': 'wrapping_counter', |
| 114 | 'type': 'static_library', |
| 115 | 'sources': [ |
| 116 | 'wrapping_counter.cc', |
| 117 | ], |
| 118 | }, |
| 119 | { |
| 120 | 'target_name': 'wrapping_counter_test', |
| 121 | 'type': 'executable', |
| 122 | 'sources': [ |
| 123 | 'wrapping_counter_test.cc', |
| 124 | ], |
| 125 | 'dependencies': [ |
| 126 | 'wrapping_counter', |
| 127 | '<(EXTERNALS):gtest', |
| 128 | ], |
| 129 | }, |
Brian Silverman | 7faaec7 | 2014-05-26 16:25:38 -0700 | [diff] [blame] | 130 | { |
| 131 | 'target_name': 'options_test', |
| 132 | 'type': 'executable', |
| 133 | 'sources': [ |
| 134 | 'options_test.cc', |
| 135 | ], |
| 136 | 'dependencies': [ |
| 137 | '<(EXTERNALS):gtest', |
| 138 | ], |
| 139 | }, |
brians | f0165ca | 2013-03-02 06:17:47 +0000 | [diff] [blame] | 140 | ], |
| 141 | } |