blob: 973ca9cd16fb06e8e187960b22cd5b5a9c9166ca [file] [log] [blame]
Adam Snaiderc4b3c192015-02-01 01:30:39 +00001{
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}