blob: 63898e8a3c577dc694644c375f042e986b83b621 [file] [log] [blame]
Brian Silvermanb691f5e2015-08-02 11:37:55 -07001{
2 'targets': [
3 {
4 'target_name': 'auto_lib',
5 'type': 'static_library',
6 'sources': [
7 'auto.cc',
8 ],
9 'dependencies': [
10 '<(DEPTH)/frc971/autonomous/autonomous.gyp:auto_queue',
11 '<(AOS)/common/controls/controls.gyp:control_loop',
12 '<(DEPTH)/y2015/control_loops/drivetrain/drivetrain.gyp:drivetrain_queue',
13 '<(DEPTH)/y2015/y2015.gyp:constants',
14 '<(AOS)/common/common.gyp:time',
15 '<(AOS)/common/util/util.gyp:phased_loop',
16 '<(AOS)/common/util/util.gyp:trapezoid_profile',
17 '<(AOS)/build/aos.gyp:logging',
18 '<(DEPTH)/y2015/actors/actors.gyp:drivetrain_action_lib',
19 '<(AOS)/common/logging/logging.gyp:queue_logging',
20 '<(DEPTH)/y2015/control_loops/claw/claw.gyp:claw_queue',
21 '<(DEPTH)/y2015/control_loops/fridge/fridge.gyp:fridge_queue',
22 '<(DEPTH)/y2015/actors/actors.gyp:stack_action_lib',
23 '<(DEPTH)/y2015/actors/actors.gyp:held_to_lift_action_lib',
24 '<(DEPTH)/y2015/actors/actors.gyp:pickup_action_lib',
25 ],
26 'export_dependent_settings': [
27 '<(AOS)/common/controls/controls.gyp:control_loop',
28 ],
29 },
30 {
31 'target_name': 'auto',
32 'type': 'executable',
33 'sources': [
34 'auto_main.cc',
35 ],
36 'dependencies': [
37 '<(AOS)/linux_code/linux_code.gyp:init',
38 '<(DEPTH)/frc971/autonomous/autonomous.gyp:auto_queue',
39 'auto_lib',
40 ],
41 },
42 ],
43}