Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 1 | { |
| 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 Schuh | 6be011a | 2013-03-19 10:07:02 +0000 | [diff] [blame^] | 34 | '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 35 | '<(DEPTH)/frc971/frc971.gyp:common', |
| 36 | '<(AOS)/common/common.gyp:time', |
| 37 | '<(AOS)/common/common.gyp:timing', |
Austin Schuh | 6be011a | 2013-03-19 10:07:02 +0000 | [diff] [blame^] | 38 | '<(AOS)/common/util/util.gyp:trapezoid_profile', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 39 | ], |
| 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 | } |