blob: 11c59976ae3f3f868e79fd02ae7194fe386d4d8d [file] [log] [blame]
Comran Morshed0d6cf9b2015-06-17 19:29:57 +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 'includes': ['../../aos/build/queues.gypi'],
11 },
12 {
13 'target_name': 'auto_lib',
14 'type': 'static_library',
15 'sources': [
16 'auto.cc',
17 ],
18 'dependencies': [
19 'auto_queue',
20 '<(AOS)/common/controls/controls.gyp:control_loop',
21 '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_queue',
22 '<(AOS)/common/common.gyp:time',
23 '<(AOS)/common/util/util.gyp:phased_loop',
24 '<(AOS)/common/util/util.gyp:trapezoid_profile',
25 '<(AOS)/build/aos.gyp:logging',
26 '<(DEPTH)/frc971/actors/actors.gyp:drivetrain_action_lib',
27 '<(AOS)/common/logging/logging.gyp:queue_logging',
28 ],
29 'export_dependent_settings': [
30 '<(AOS)/common/controls/controls.gyp:control_loop',
31 ],
32 },
33 {
34 'target_name': 'auto_bot3',
35 'type': 'executable',
36 'sources': [
37 'auto_main.cc',
38 ],
39 'dependencies': [
40 '<(AOS)/linux_code/linux_code.gyp:init',
41 'auto_queue',
42 'auto_lib',
43 ],
44 },
45 ],
46}