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