blob: 526904c3758bebf1623d881864d8a52cf019fd81 [file] [log] [blame]
Austin Schuh47017412013-03-10 11:50:46 -07001{
2 'targets': [
3 {
4 'target_name': 'auto_queue',
5 'type': 'static_library',
6 'sources': ['auto.q'],
7 'variables': {
8 'header_path': 'frc971/autonomous',
9 },
10 'dependencies': [
Austin Schuh47017412013-03-10 11:50:46 -070011 '<(AOS)/common/common.gyp:queues',
12 ],
13 'export_dependent_settings': [
Austin Schuh47017412013-03-10 11:50:46 -070014 '<(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': [
Austin Schuh47017412013-03-10 11:50:46 -070025 'auto_queue',
26 '<(AOS)/common/common.gyp:controls',
27 '<(DEPTH)/frc971/control_loops/wrist/wrist.gyp:wrist_loop',
28 '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
29 '<(DEPTH)/frc971/control_loops/index/index.gyp:index_loop',
30 '<(DEPTH)/frc971/control_loops/angle_adjust/angle_adjust.gyp:angle_adjust_loop',
Austin Schuh6be011a2013-03-19 10:07:02 +000031 '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
Brian Silverman431500a2013-10-28 19:50:15 -070032 '<(DEPTH)/frc971/frc971.gyp:constants',
Austin Schuh47017412013-03-10 11:50:46 -070033 '<(AOS)/common/common.gyp:time',
34 '<(AOS)/common/common.gyp:timing',
Austin Schuh6be011a2013-03-19 10:07:02 +000035 '<(AOS)/common/util/util.gyp:trapezoid_profile',
Brian Silverman598800f2013-05-09 17:08:42 -070036 '<(AOS)/build/aos.gyp:logging',
Austin Schuh47017412013-03-10 11:50:46 -070037 ],
38 'export_dependent_settings': [
39 '<(AOS)/common/common.gyp:controls',
40 ],
41 },
42 {
43 'target_name': 'auto',
44 'type': 'executable',
45 'sources': [
46 'auto_main.cc',
47 ],
48 'dependencies': [
49 '<(AOS)/atom_code/atom_code.gyp:init',
50 'auto_queue',
51 'auto_lib',
52 ],
53 },
54 ],
55}