brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
Brian Silverman | 8a8ee68 | 2014-02-12 14:06:06 -0800 | [diff] [blame] | 4 | 'target_name': 'test_queue', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 5 | 'type': 'static_library', |
| 6 | 'sources': [ |
| 7 | '<(AOS)/common/test_queue.q', |
| 8 | ], |
| 9 | 'variables': { |
| 10 | 'header_path': 'aos/common', |
| 11 | }, |
| 12 | 'dependencies': [ |
| 13 | '<(AOS)/common/common.gyp:queues', |
| 14 | ], |
| 15 | 'includes': ['../build/queues.gypi'], |
| 16 | }, |
| 17 | { |
| 18 | 'target_name': 'queue_testutils', |
| 19 | 'type': 'static_library', |
| 20 | 'sources': [ |
| 21 | 'queue_testutils.cc', |
| 22 | ], |
| 23 | 'dependencies': [ |
Brian Silverman | b361697 | 2013-03-05 19:58:10 -0800 | [diff] [blame] | 24 | '<(AOS)/build/aos.gyp:logging', |
| 25 | 'once', |
| 26 | '<(EXTERNALS):gtest', |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 27 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:shared_mem', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 28 | ], |
Brian Silverman | eeb62ca | 2013-09-11 15:08:03 -0700 | [diff] [blame] | 29 | 'export_dependent_settings': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 30 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:shared_mem', |
Brian Silverman | eeb62ca | 2013-09-11 15:08:03 -0700 | [diff] [blame] | 31 | ], |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 32 | }, |
| 33 | { |
| 34 | 'target_name': 'time', |
| 35 | 'type': 'static_library', |
| 36 | 'sources': [ |
| 37 | 'time.cc' |
| 38 | ], |
| 39 | 'dependencies': [ |
Brian Silverman | b089388 | 2014-02-10 14:48:30 -0800 | [diff] [blame] | 40 | '<(AOS)/build/aos.gyp:logging_interface', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 41 | 'mutex', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 42 | ], |
| 43 | }, |
| 44 | { |
Brian Silverman | 96395be | 2014-02-11 18:35:57 -0800 | [diff] [blame] | 45 | 'target_name': 'queue_types', |
| 46 | 'type': 'static_library', |
Brian Silverman | 1885bd0 | 2014-02-13 12:28:12 -0800 | [diff] [blame] | 47 | 'variables': { |
| 48 | 'print_field_cc': '<(SHARED_INTERMEDIATE_DIR)/print_field.cc', |
Brian Silverman | 76156ca | 2014-02-22 13:10:42 -0800 | [diff] [blame^] | 49 | 'queue_primitives_h': '<(SHARED_INTERMEDIATE_DIR)/aos/queue_primitives.h', |
Brian Silverman | 1885bd0 | 2014-02-13 12:28:12 -0800 | [diff] [blame] | 50 | }, |
Brian Silverman | 96395be | 2014-02-11 18:35:57 -0800 | [diff] [blame] | 51 | 'sources': [ |
| 52 | 'queue_types.cc', |
Brian Silverman | 1885bd0 | 2014-02-13 12:28:12 -0800 | [diff] [blame] | 53 | '<(print_field_cc)', |
Brian Silverman | 76156ca | 2014-02-22 13:10:42 -0800 | [diff] [blame^] | 54 | '<(queue_primitives_h)', |
Brian Silverman | 96395be | 2014-02-11 18:35:57 -0800 | [diff] [blame] | 55 | ], |
Brian Silverman | 4aeac5f | 2014-02-11 22:17:07 -0800 | [diff] [blame] | 56 | 'dependencies': [ |
| 57 | '<(AOS)/build/aos.gyp:logging_interface', |
| 58 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:shared_mem', |
| 59 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:core_lib', |
Brian Silverman | 8a8ee68 | 2014-02-12 14:06:06 -0800 | [diff] [blame] | 60 | 'mutex', |
Brian Silverman | 4aeac5f | 2014-02-11 22:17:07 -0800 | [diff] [blame] | 61 | ], |
Brian Silverman | 1885bd0 | 2014-02-13 12:28:12 -0800 | [diff] [blame] | 62 | 'actions': [ |
| 63 | { |
| 64 | 'variables': { |
| 65 | 'script': '<(AOS)/build/queues/print_field.rb', |
| 66 | }, |
| 67 | 'action_name': 'gen_print_field', |
| 68 | 'inputs': [ |
| 69 | '<(script)', |
| 70 | '<!@(find <(AOS)/build/queues/ -name *.rb)', |
| 71 | ], |
| 72 | 'outputs': [ |
| 73 | '<(print_field_cc)', |
| 74 | ], |
| 75 | 'action': ['ruby', '<(script)', '<(print_field_cc)'], |
| 76 | 'message': 'Generating print_field.cc', |
| 77 | }, |
Brian Silverman | 76156ca | 2014-02-22 13:10:42 -0800 | [diff] [blame^] | 78 | { |
| 79 | 'variables': { |
| 80 | 'script': '<(AOS)/build/queues/queue_primitives.rb', |
| 81 | }, |
| 82 | 'action_name': 'gen_queue_primitives', |
| 83 | 'inputs': [ |
| 84 | '<(script)', |
| 85 | '<!@(find <(AOS)/build/queues/ -name *.rb)', |
| 86 | ], |
| 87 | 'outputs': [ |
| 88 | '<(queue_primitives_h)', |
| 89 | ], |
| 90 | 'action': ['ruby', '<(script)', '<(queue_primitives_h)'], |
| 91 | 'message': 'Generating queue_primitives.h', |
| 92 | }, |
Brian Silverman | 1885bd0 | 2014-02-13 12:28:12 -0800 | [diff] [blame] | 93 | ], |
Brian Silverman | 76156ca | 2014-02-22 13:10:42 -0800 | [diff] [blame^] | 94 | 'hard_dependency': 1, |
Brian Silverman | 96395be | 2014-02-11 18:35:57 -0800 | [diff] [blame] | 95 | }, |
| 96 | { |
| 97 | 'target_name': 'queue_types_test', |
| 98 | 'type': 'executable', |
| 99 | 'sources': [ |
| 100 | 'queue_types_test.cc', |
| 101 | ], |
| 102 | 'dependencies': [ |
| 103 | 'queue_types', |
| 104 | '<(EXTERNALS):gtest', |
Brian Silverman | 8a8ee68 | 2014-02-12 14:06:06 -0800 | [diff] [blame] | 105 | 'test_queue', |
Brian Silverman | 96395be | 2014-02-11 18:35:57 -0800 | [diff] [blame] | 106 | ], |
| 107 | }, |
| 108 | { |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 109 | 'target_name': 'queues', |
| 110 | 'type': 'static_library', |
| 111 | 'sources': [ |
| 112 | 'queue.cc', |
| 113 | ], |
| 114 | 'conditions': [ |
| 115 | ['OS=="crio"', { |
| 116 | 'dependencies': [ |
| 117 | '<(EXTERNALS):WPILib', |
| 118 | ], |
| 119 | }, |
| 120 | { |
| 121 | 'dependencies': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 122 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 123 | ], |
| 124 | 'export_dependent_settings': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 125 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:queue', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 126 | ], |
| 127 | }] |
| 128 | ], |
| 129 | 'dependencies': [ |
Brian Silverman | 3204dd8 | 2013-03-12 18:42:01 -0700 | [diff] [blame] | 130 | 'time', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 131 | ], |
| 132 | 'export_dependent_settings': [ |
Brian Silverman | 3204dd8 | 2013-03-12 18:42:01 -0700 | [diff] [blame] | 133 | 'time', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 134 | ], |
| 135 | }, |
| 136 | { |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 137 | 'target_name': 'scoped_fd', |
| 138 | 'type': 'static_library', |
| 139 | 'sources': [ |
| 140 | # 'scoped_fd.h' |
| 141 | ], |
| 142 | 'dependencies': [ |
| 143 | '<(AOS)/build/aos.gyp:logging', |
| 144 | ], |
| 145 | 'export_dependent_settings': [ |
| 146 | '<(AOS)/build/aos.gyp:logging', |
| 147 | ], |
| 148 | }, |
| 149 | { |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 150 | 'target_name': 'control_loop_queues', |
| 151 | 'type': 'static_library', |
| 152 | 'sources': [ '<(AOS)/common/control_loop/control_loops.q' ], |
| 153 | 'variables': { |
| 154 | 'header_path': 'aos/common/control_loop', |
| 155 | }, |
| 156 | 'dependencies': [ |
| 157 | '<(AOS)/common/common.gyp:queues', |
| 158 | ], |
| 159 | 'includes': ['../build/queues.gypi'], |
| 160 | }, |
| 161 | { |
| 162 | 'target_name': 'timing_so', |
| 163 | 'type': 'shared_library', |
| 164 | 'sources': [ |
| 165 | 'control_loop/Timing.cpp' |
| 166 | ], |
| 167 | 'variables': {'no_rsync': 1}, |
| 168 | 'dependencies': [ |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 169 | ], |
| 170 | 'direct_dependent_settings': { |
| 171 | 'variables': { |
| 172 | 'jni_libs': [ |
| 173 | 'timing_so', |
| 174 | ], |
| 175 | }, |
| 176 | }, |
| 177 | 'export_dependent_settings': [ |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 178 | ], |
| 179 | }, |
| 180 | { |
| 181 | 'target_name': 'timing', |
| 182 | 'type': 'static_library', |
| 183 | 'sources': [ |
| 184 | 'control_loop/Timing.cpp' |
| 185 | ], |
| 186 | 'dependencies': [ |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 187 | '<(AOS)/build/aos.gyp:logging', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 188 | 'time', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 189 | ], |
| 190 | }, |
| 191 | { |
| 192 | 'target_name': 'controls', |
| 193 | 'type': 'static_library', |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 194 | 'sources': [ |
Brian Silverman | 15ca985 | 2013-03-17 18:24:15 -0700 | [diff] [blame] | 195 | 'control_loop/ControlLoop.cc', |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 196 | ], |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 197 | 'dependencies': [ |
| 198 | '<(AOS)/common/messages/messages.gyp:aos_queues', |
| 199 | '<(AOS)/build/aos.gyp:logging', |
| 200 | 'timing', |
Brian Silverman | 3204dd8 | 2013-03-12 18:42:01 -0700 | [diff] [blame] | 201 | 'time', |
Brian Silverman | 1e869f3 | 2013-10-25 18:00:20 -0700 | [diff] [blame] | 202 | 'control_loop_queues', |
Brian Silverman | d6974f4 | 2014-02-14 13:39:21 -0800 | [diff] [blame] | 203 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
Brian Silverman | 50a9d03 | 2014-02-16 17:20:57 -0800 | [diff] [blame] | 204 | '<(AOS)/common/util/util.gyp:log_interval', |
Austin Schuh | 3d6e3df | 2014-02-17 01:51:03 -0800 | [diff] [blame] | 205 | '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:sensor_generation', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 206 | ], |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 207 | 'export_dependent_settings': [ |
| 208 | '<(AOS)/common/messages/messages.gyp:aos_queues', |
| 209 | '<(AOS)/build/aos.gyp:logging', |
| 210 | 'timing', |
Brian Silverman | 3204dd8 | 2013-03-12 18:42:01 -0700 | [diff] [blame] | 211 | 'time', |
Brian Silverman | 1e869f3 | 2013-10-25 18:00:20 -0700 | [diff] [blame] | 212 | 'control_loop_queues', |
Brian Silverman | d6974f4 | 2014-02-14 13:39:21 -0800 | [diff] [blame] | 213 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
Brian Silverman | 50a9d03 | 2014-02-16 17:20:57 -0800 | [diff] [blame] | 214 | '<(AOS)/common/util/util.gyp:log_interval', |
Austin Schuh | 3d6e3df | 2014-02-17 01:51:03 -0800 | [diff] [blame] | 215 | '<(DEPTH)/bbb_cape/src/bbb/bbb.gyp:sensor_generation', |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 216 | ], |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 217 | }, |
| 218 | { |
| 219 | 'target_name': 'queue_test', |
| 220 | 'type': 'executable', |
| 221 | 'sources': [ |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 222 | 'queue_test.cc', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 223 | ], |
| 224 | 'dependencies': [ |
| 225 | '<(EXTERNALS):gtest', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 226 | 'queue_testutils', |
Brian Silverman | 8a8ee68 | 2014-02-12 14:06:06 -0800 | [diff] [blame] | 227 | 'test_queue', |
Brian Silverman | 798c778 | 2013-03-28 16:48:02 -0700 | [diff] [blame] | 228 | '<(AOS)/common/util/util.gyp:thread', |
Brian Silverman | 8d2e56e | 2013-09-23 17:55:03 -0700 | [diff] [blame] | 229 | 'die', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 230 | ], |
| 231 | }, |
| 232 | { |
| 233 | 'target_name': 'type_traits_test', |
| 234 | 'type': '<(aos_target)', |
| 235 | 'sources': [ |
| 236 | 'type_traits_test.cpp', |
| 237 | ], |
| 238 | 'dependencies': [ |
| 239 | '<(EXTERNALS):gtest', |
brians | 2fdfc07 | 2013-02-26 05:35:15 +0000 | [diff] [blame] | 240 | ], |
| 241 | }, |
| 242 | { |
| 243 | 'target_name': 'gtest_prod', |
| 244 | 'type': 'static_library', |
| 245 | 'dependencies': [ |
| 246 | '<(EXTERNALS):gtest_prod', |
| 247 | ], |
| 248 | 'export_dependent_settings': [ |
| 249 | '<(EXTERNALS):gtest_prod', |
| 250 | ], |
| 251 | }, |
| 252 | { |
| 253 | 'target_name': 'once', |
| 254 | 'type': 'static_library', |
| 255 | 'dependencies': [ |
| 256 | '<(EXTERNALS):gtest_prod', |
| 257 | ], |
| 258 | 'export_dependent_settings': [ |
| 259 | '<(EXTERNALS):gtest_prod', |
| 260 | ], |
| 261 | }, |
| 262 | { |
| 263 | 'target_name': 'once_test', |
| 264 | 'type': '<(aos_target)', |
| 265 | 'sources': [ |
| 266 | 'once_test.cc', |
| 267 | ], |
| 268 | 'dependencies': [ |
| 269 | '<(EXTERNALS):gtest', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 270 | 'once', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 271 | ], |
| 272 | }, |
| 273 | { |
| 274 | 'target_name': 'time_test', |
| 275 | 'type': '<(aos_target)', |
| 276 | 'sources': [ |
| 277 | 'time_test.cc', |
| 278 | ], |
| 279 | 'dependencies': [ |
| 280 | '<(EXTERNALS):gtest', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 281 | 'time', |
| 282 | '<(AOS)/build/aos.gyp:logging', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 283 | ], |
| 284 | }, |
| 285 | { |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 286 | 'target_name': 'die', |
| 287 | 'type': 'static_library', |
| 288 | 'sources': [ |
| 289 | 'die.cc', |
| 290 | ], |
| 291 | }, |
| 292 | { |
Brian Silverman | 08661c7 | 2013-09-01 17:24:38 -0700 | [diff] [blame] | 293 | 'target_name': 'condition', |
| 294 | 'type': 'static_library', |
| 295 | 'sources': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 296 | '<(AOS)/linux_code/ipc_lib/condition.cc', |
Brian Silverman | 08661c7 | 2013-09-01 17:24:38 -0700 | [diff] [blame] | 297 | ], |
| 298 | 'dependencies': [ |
| 299 | 'mutex', |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 300 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync', |
Brian Silverman | b089388 | 2014-02-10 14:48:30 -0800 | [diff] [blame] | 301 | '<(AOS)/build/aos.gyp:logging_interface', |
Brian Silverman | 08661c7 | 2013-09-01 17:24:38 -0700 | [diff] [blame] | 302 | ], |
| 303 | 'export_dependent_settings': [ |
| 304 | 'mutex', |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 305 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync', |
Brian Silverman | 08661c7 | 2013-09-01 17:24:38 -0700 | [diff] [blame] | 306 | ], |
| 307 | }, |
| 308 | { |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 309 | 'target_name': 'mutex', |
| 310 | 'type': 'static_library', |
| 311 | 'conditions': [ |
| 312 | ['OS=="crio"', { |
| 313 | 'sources': [ |
| 314 | '<(AOS)/crio/shared_libs/mutex.cpp', |
| 315 | ], |
| 316 | }, { |
| 317 | 'sources': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 318 | '<(AOS)/linux_code/ipc_lib/mutex.cpp', |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 319 | ], |
| 320 | 'dependencies': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 321 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync', |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 322 | ], |
| 323 | 'export_dependent_settings': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 324 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:aos_sync', |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 325 | ], |
| 326 | }], |
| 327 | ], |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 328 | 'dependencies': [ |
Brian Silverman | b089388 | 2014-02-10 14:48:30 -0800 | [diff] [blame] | 329 | '<(AOS)/build/aos.gyp:logging_interface', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 330 | ], |
Brian Silverman | f665d69 | 2013-02-17 22:11:39 -0800 | [diff] [blame] | 331 | }, |
| 332 | { |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 333 | 'target_name': 'mutex_test', |
| 334 | 'type': '<(aos_target)', |
| 335 | 'sources': [ |
| 336 | 'mutex_test.cpp', |
| 337 | ], |
| 338 | 'dependencies': [ |
| 339 | '<(EXTERNALS):gtest', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 340 | 'mutex', |
Brian Silverman | 8d2e56e | 2013-09-23 17:55:03 -0700 | [diff] [blame] | 341 | 'die', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 342 | ], |
| 343 | }, |
| 344 | { |
Brian Silverman | 797e71e | 2013-09-06 17:29:39 -0700 | [diff] [blame] | 345 | 'target_name': 'condition_test', |
| 346 | 'type': 'executable', |
| 347 | 'sources': [ |
| 348 | 'condition_test.cc', |
| 349 | ], |
| 350 | 'dependencies': [ |
| 351 | '<(EXTERNALS):gtest', |
| 352 | 'condition', |
| 353 | '<(AOS)/common/util/util.gyp:thread', |
| 354 | 'time', |
| 355 | 'mutex', |
| 356 | '<(AOS)/build/aos.gyp:logging', |
| 357 | 'queue_testutils', |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 358 | '<(AOS)/linux_code/ipc_lib/ipc_lib.gyp:core_lib', |
Brian Silverman | 8d2e56e | 2013-09-23 17:55:03 -0700 | [diff] [blame] | 359 | 'die', |
Brian Silverman | 797e71e | 2013-09-06 17:29:39 -0700 | [diff] [blame] | 360 | ], |
| 361 | }, |
| 362 | { |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 363 | 'target_name': 'die_test', |
| 364 | 'type': 'executable', |
| 365 | 'sources': [ |
| 366 | 'die_test.cc', |
| 367 | ], |
| 368 | 'dependencies': [ |
| 369 | '<(EXTERNALS):gtest', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 370 | 'die', |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 371 | ], |
| 372 | }, |
Brian Silverman | 66f079a | 2013-08-26 16:24:30 -0700 | [diff] [blame] | 373 | { |
| 374 | 'target_name': 'util', |
| 375 | 'type': 'static_library', |
| 376 | 'sources': [ |
| 377 | 'util.cc', |
| 378 | ], |
| 379 | }, |
brians | 343bc11 | 2013-02-10 01:53:46 +0000 | [diff] [blame] | 380 | ], |
| 381 | } |