Brian Silverman | b691f5e | 2015-08-02 11:37:55 -0700 | [diff] [blame] | 1 | { |
| 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', |
Austin Schuh | bb227f8 | 2015-09-06 15:27:52 -0700 | [diff] [blame] | 25 | ':auto_queue', |
Brian Silverman | b691f5e | 2015-08-02 11:37:55 -0700 | [diff] [blame] | 26 | ], |
| 27 | 'export_dependent_settings': [ |
| 28 | '<(AOS)/common/controls/controls.gyp:control_loop', |
| 29 | ], |
| 30 | }, |
| 31 | { |
| 32 | 'target_name': 'auto', |
| 33 | 'type': 'executable', |
| 34 | 'sources': [ |
| 35 | 'auto_main.cc', |
| 36 | ], |
| 37 | 'dependencies': [ |
| 38 | '<(AOS)/linux_code/linux_code.gyp:init', |
| 39 | '<(DEPTH)/frc971/autonomous/autonomous.gyp:auto_queue', |
| 40 | 'auto_lib', |
| 41 | ], |
| 42 | }, |
Austin Schuh | bb227f8 | 2015-09-06 15:27:52 -0700 | [diff] [blame] | 43 | { |
| 44 | 'target_name': 'auto_queue', |
| 45 | 'type': 'static_library', |
| 46 | 'sources': ['auto.q'], |
| 47 | 'variables': { |
| 48 | 'header_path': 'y2015/autonomous', |
| 49 | }, |
| 50 | 'includes': ['../../aos/build/queues.gypi'], |
| 51 | }, |
Brian Silverman | b691f5e | 2015-08-02 11:37:55 -0700 | [diff] [blame] | 52 | ], |
| 53 | } |