blob: 54b08161538f46c2c5520ea6018637d36da36434 [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',
28 '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
James Kuszmaule63ef652013-11-06 20:35:32 -080029 '<(DEPTH)/bot3/control_loops/shooter/shooter.gyp:shooter_loop',
Daniel Petti53b11092013-11-02 05:53:16 +000030 '<(DEPTH)/frc971/frc971.gyp:constants',
Daniel Petti1f448512013-10-19 19:35:55 +000031 '<(AOS)/common/common.gyp:time',
32 '<(AOS)/common/common.gyp:timing',
33 '<(AOS)/common/util/util.gyp:trapezoid_profile',
34 ],
35 'export_dependent_settings': [
36 '<(AOS)/common/common.gyp:controls',
37 ],
38 },
39 {
40 'target_name': 'auto',
41 'type': 'executable',
42 'sources': [
43 'auto_main.cc',
44 ],
45 'dependencies': [
46 '<(AOS)/atom_code/atom_code.gyp:init',
47 'auto_queue',
48 'auto_lib',
49 ],
50 },
51 ],
52}