blob: 229ab400cf2669efc3cf5972cab0f02063020259 [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': [
11 '<(AOS)/build/aos.gyp:libaos',
12 '<(AOS)/common/common.gyp:queues',
13 ],
14 'export_dependent_settings': [
15 '<(AOS)/build/aos.gyp:libaos',
16 '<(AOS)/common/common.gyp:queues',
17 ],
18 'includes': ['../../aos/build/queues.gypi'],
19 },
20 {
21 'target_name': 'auto_lib',
22 'type': 'static_library',
23 'sources': [
24 'auto.cc',
25 ],
26 'dependencies': [
27 '<(AOS)/build/aos.gyp:libaos',
28 'auto_queue',
29 '<(AOS)/common/common.gyp:controls',
30 '<(DEPTH)/frc971/control_loops/wrist/wrist.gyp:wrist_loop',
31 '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
32 '<(DEPTH)/frc971/control_loops/index/index.gyp:index_loop',
33 '<(DEPTH)/frc971/control_loops/angle_adjust/angle_adjust.gyp:angle_adjust_loop',
Austin Schuh6be011a2013-03-19 10:07:02 +000034 '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
Austin Schuh47017412013-03-10 11:50:46 -070035 '<(DEPTH)/frc971/frc971.gyp:common',
36 '<(AOS)/common/common.gyp:time',
37 '<(AOS)/common/common.gyp:timing',
Austin Schuh6be011a2013-03-19 10:07:02 +000038 '<(AOS)/common/util/util.gyp:trapezoid_profile',
Austin Schuh47017412013-03-10 11:50:46 -070039 ],
40 'export_dependent_settings': [
41 '<(AOS)/common/common.gyp:controls',
42 ],
43 },
44 {
45 'target_name': 'auto',
46 'type': 'executable',
47 'sources': [
48 'auto_main.cc',
49 ],
50 'dependencies': [
51 '<(AOS)/atom_code/atom_code.gyp:init',
52 'auto_queue',
53 'auto_lib',
54 ],
55 },
56 ],
57}