blob: b70d178215fd814dffcfa50d34bf4018143448f7 [file] [log] [blame]
Daniel Pettiaece37f2014-10-25 17:13:44 -07001{
2 'targets': [
3 {
4 'target_name': 'auto_queue',
5 'type': 'static_library',
6 'sources': [
7 '<(DEPTH)/frc971/autonomous/auto.q',
8 ],
9 'variables': {
10 'header_path': 'frc971/autonomous',
11 },
12 'includes': ['../../aos/build/queues.gypi'],
13 },
14 {
15 'target_name': 'auto_lib',
16 'type': 'static_library',
17 'sources': [
18 'auto.cc',
19 ],
20 'dependencies': [
21 'auto_queue',
22 '<(AOS)/common/controls/controls.gyp:control_loop',
23 '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
24 '<(AOS)/common/common.gyp:time',
25 '<(AOS)/common/util/util.gyp:phased_loop',
26 '<(AOS)/common/util/util.gyp:trapezoid_profile',
27 '<(AOS)/build/aos.gyp:logging',
28 '<(DEPTH)/frc971/queues/queues.gyp:queues',
29 '<(AOS)/common/logging/logging.gyp:queue_logging',
30 ],
31 'export_dependent_settings': [
32 '<(AOS)/common/controls/controls.gyp:control_loop',
33 ],
34 },
35 {
36 'target_name': 'auto',
37 'type': 'executable',
38 'sources': [
39 'auto_main.cc',
40 ],
41 'dependencies': [
42 '<(AOS)/linux_code/linux_code.gyp:init',
43 'auto_queue',
44 'auto_lib',
45 ],
46 },
47 ],
48}