Daniel Petti | aece37f | 2014-10-25 17:13:44 -0700 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
| 4 | 'target_name': 'auto_queue', |
| 5 | 'type': 'static_library', |
| 6 | 'sources': [ |
| 7 | '<(DEPTH)/frc971/autonomous/auto.q', |
| 8 | ], |
| 9 | 'variables': { |
| 10 | 'header_path': 'frc971/autonomous', |
| 11 | }, |
| 12 | 'includes': ['../../aos/build/queues.gypi'], |
| 13 | }, |
| 14 | { |
| 15 | 'target_name': 'auto_lib', |
| 16 | 'type': 'static_library', |
| 17 | 'sources': [ |
| 18 | 'auto.cc', |
| 19 | ], |
| 20 | 'dependencies': [ |
| 21 | 'auto_queue', |
| 22 | '<(AOS)/common/controls/controls.gyp:control_loop', |
| 23 | '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop', |
Daniel Petti | b0733be | 2014-11-14 22:44:03 -0800 | [diff] [blame] | 24 | '<(DEPTH)/bot3/control_loops/rollers/rollers.gyp:rollers_loop', |
| 25 | '<(DEPTH)/bot3/actions/actions.gyp:action_client', |
| 26 | '<(DEPTH)/bot3/actions/actions.gyp:drivetrain_action_lib', |
Daniel Petti | aece37f | 2014-10-25 17:13:44 -0700 | [diff] [blame] | 27 | '<(AOS)/common/common.gyp:time', |
| 28 | '<(AOS)/common/util/util.gyp:phased_loop', |
| 29 | '<(AOS)/common/util/util.gyp:trapezoid_profile', |
| 30 | '<(AOS)/build/aos.gyp:logging', |
| 31 | '<(DEPTH)/frc971/queues/queues.gyp:queues', |
Daniel Petti | aece37f | 2014-10-25 17:13:44 -0700 | [diff] [blame] | 32 | ], |
| 33 | 'export_dependent_settings': [ |
| 34 | '<(AOS)/common/controls/controls.gyp:control_loop', |
| 35 | ], |
| 36 | }, |
| 37 | { |
| 38 | 'target_name': 'auto', |
| 39 | 'type': 'executable', |
| 40 | 'sources': [ |
| 41 | 'auto_main.cc', |
| 42 | ], |
| 43 | 'dependencies': [ |
| 44 | '<(AOS)/linux_code/linux_code.gyp:init', |
| 45 | 'auto_queue', |
| 46 | 'auto_lib', |
| 47 | ], |
| 48 | }, |
| 49 | ], |
| 50 | } |