blob: 8835e845d6e8d2826a8b0cfbdc38719cd4127fe9 [file] [log] [blame]
Daniel Petti1f448512013-10-19 19:35:55 +00001{
2 'targets': [
3 {
4 'target_name': 'auto_queue',
5 'type': 'static_library',
6 'sources': ['auto.q'],
7 'variables': {
8 'header_path': 'bot3/autonomous',
9 },
10 'dependencies': [
11 '<(AOS)/common/common.gyp:queues',
12 ],
13 'export_dependent_settings': [
14 '<(AOS)/common/common.gyp:queues',
15 ],
16 'includes': ['../../aos/build/queues.gypi'],
17 },
18 {
19 'target_name': 'auto_lib',
20 'type': 'static_library',
21 'sources': [
22 'auto.cc',
23 ],
24 'dependencies': [
25 'auto_queue',
26 '<(AOS)/common/common.gyp:controls',
27 '<(AOS)/build/aos.gyp:logging',
James Kuszmaule63ef652013-11-06 20:35:32 -080028 '<(DEPTH)/bot3/control_loops/shooter/shooter.gyp:shooter_loop',
Daniel Petti1f448512013-10-19 19:35:55 +000029 '<(AOS)/common/common.gyp:time',
30 '<(AOS)/common/common.gyp:timing',
31 '<(AOS)/common/util/util.gyp:trapezoid_profile',
32 ],
33 'export_dependent_settings': [
34 '<(AOS)/common/common.gyp:controls',
35 ],
36 },
37 {
38 'target_name': 'auto',
39 'type': 'executable',
40 'sources': [
41 'auto_main.cc',
42 ],
43 'dependencies': [
44 '<(AOS)/atom_code/atom_code.gyp:init',
45 'auto_queue',
46 'auto_lib',
47 ],
48 },
49 ],
50}