blob: 20feaedd37850c9f87ed1a30e78f7df448e8a02e [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',
Austin Schuh6be011a2013-03-19 10:07:02 +000027 '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
Austin Schuh80ff2e12014-03-08 12:06:19 -080028 '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
29 '<(DEPTH)/frc971/control_loops/claw/claw.gyp:claw_loop',
Brian Silverman431500a2013-10-28 19:50:15 -070030 '<(DEPTH)/frc971/frc971.gyp:constants',
Austin Schuh47017412013-03-10 11:50:46 -070031 '<(AOS)/common/common.gyp:time',
32 '<(AOS)/common/common.gyp:timing',
Austin Schuh6be011a2013-03-19 10:07:02 +000033 '<(AOS)/common/util/util.gyp:trapezoid_profile',
Brian Silverman598800f2013-05-09 17:08:42 -070034 '<(AOS)/build/aos.gyp:logging',
Austin Schuh80ff2e12014-03-08 12:06:19 -080035 '<(DEPTH)/frc971/actions/actions.gyp:action_client',
36 '<(DEPTH)/frc971/actions/actions.gyp:shoot_action_lib',
37 '<(DEPTH)/frc971/actions/actions.gyp:drivetrain_action_lib',
Brian Silverman6f621542014-04-06 16:00:41 -070038 '<(DEPTH)/frc971/queues/queues.gyp:hot_goal',
39 '<(AOS)/common/logging/logging.gyp:queue_logging',
Austin Schuh47017412013-03-10 11:50:46 -070040 ],
41 'export_dependent_settings': [
42 '<(AOS)/common/common.gyp:controls',
43 ],
44 },
45 {
46 'target_name': 'auto',
47 'type': 'executable',
48 'sources': [
49 'auto_main.cc',
50 ],
51 'dependencies': [
Brian Silverman14fd0fb2014-01-14 21:42:01 -080052 '<(AOS)/linux_code/linux_code.gyp:init',
Austin Schuh47017412013-03-10 11:50:46 -070053 'auto_queue',
54 'auto_lib',
55 ],
56 },
57 ],
58}