Adam Snaider | c4b3c19 | 2015-02-01 01:30:39 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
| 4 | 'target_name': 'zeroing_queue', |
| 5 | 'type': 'static_library', |
| 6 | 'sources': [ |
| 7 | '<(DEPTH)/frc971/zeroing/zeroing_queue.q', |
| 8 | ], |
| 9 | 'variables': { |
| 10 | 'header_path': 'frc971/zeroing', |
| 11 | }, |
| 12 | 'includes': ['../../aos/build/queues.gypi'], |
| 13 | }, |
| 14 | { |
| 15 | 'target_name': 'zeroing', |
| 16 | 'type': 'static_library', |
| 17 | 'sources': [ |
| 18 | 'zeroing.cc', |
| 19 | ], |
| 20 | 'dependencies': [ |
| 21 | 'zeroing_queue', |
| 22 | ], |
| 23 | }, |
| 24 | { |
| 25 | 'target_name': 'zeroing_test', |
| 26 | 'type': 'executable', |
| 27 | 'sources': [ |
| 28 | 'zeroing_test.cc', |
| 29 | ], |
| 30 | 'dependencies': [ |
| 31 | '<(EXTERNALS):gtest', |
| 32 | '<(AOS)/common/common.gyp:queue_testutils', |
| 33 | 'zeroing', |
| 34 | 'zeroing_queue', |
| 35 | '<(AOS)/common/util/util.gyp:thread', |
| 36 | '<(AOS)/common/common.gyp:die', |
| 37 | ], |
| 38 | }, |
| 39 | ], |
| 40 | } |