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': [ |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 11 | '<(AOS)/common/common.gyp:queues', |
| 12 | ], |
| 13 | 'export_dependent_settings': [ |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 14 | '<(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 Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 25 | 'auto_queue', |
| 26 | '<(AOS)/common/common.gyp:controls', |
| 27 | '<(DEPTH)/frc971/control_loops/wrist/wrist.gyp:wrist_loop', |
| 28 | '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop', |
| 29 | '<(DEPTH)/frc971/control_loops/index/index.gyp:index_loop', |
| 30 | '<(DEPTH)/frc971/control_loops/angle_adjust/angle_adjust.gyp:angle_adjust_loop', |
Austin Schuh | 6be011a | 2013-03-19 10:07:02 +0000 | [diff] [blame] | 31 | '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop', |
Brian Silverman | 431500a | 2013-10-28 19:50:15 -0700 | [diff] [blame] | 32 | '<(DEPTH)/frc971/frc971.gyp:constants', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 33 | '<(AOS)/common/common.gyp:time', |
| 34 | '<(AOS)/common/common.gyp:timing', |
Austin Schuh | 6be011a | 2013-03-19 10:07:02 +0000 | [diff] [blame] | 35 | '<(AOS)/common/util/util.gyp:trapezoid_profile', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 36 | '<(AOS)/build/aos.gyp:logging', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 37 | ], |
| 38 | 'export_dependent_settings': [ |
| 39 | '<(AOS)/common/common.gyp:controls', |
| 40 | ], |
| 41 | }, |
| 42 | { |
| 43 | 'target_name': 'auto', |
| 44 | 'type': 'executable', |
| 45 | 'sources': [ |
| 46 | 'auto_main.cc', |
| 47 | ], |
| 48 | 'dependencies': [ |
| 49 | '<(AOS)/atom_code/atom_code.gyp:init', |
| 50 | 'auto_queue', |
| 51 | 'auto_lib', |
| 52 | ], |
| 53 | }, |
| 54 | ], |
| 55 | } |