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 | }, |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 10 | 'includes': ['../../aos/build/queues.gypi'], |
| 11 | }, |
| 12 | { |
| 13 | 'target_name': 'auto_lib', |
| 14 | 'type': 'static_library', |
| 15 | 'sources': [ |
| 16 | 'auto.cc', |
| 17 | ], |
| 18 | 'dependencies': [ |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 19 | 'auto_queue', |
Brian Silverman | 7ff05bf | 2014-04-10 12:48:25 -0700 | [diff] [blame] | 20 | '<(AOS)/common/controls/controls.gyp:control_loop', |
Brian Silverman | ada5f2c | 2015-02-01 02:41:14 -0500 | [diff] [blame] | 21 | '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_queue', |
Brian Silverman | 431500a | 2013-10-28 19:50:15 -0700 | [diff] [blame] | 22 | '<(DEPTH)/frc971/frc971.gyp:constants', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 23 | '<(AOS)/common/common.gyp:time', |
Brian | 3afd6fc | 2014-04-02 20:41:49 -0700 | [diff] [blame] | 24 | '<(AOS)/common/util/util.gyp:phased_loop', |
Austin Schuh | 6be011a | 2013-03-19 10:07:02 +0000 | [diff] [blame] | 25 | '<(AOS)/common/util/util.gyp:trapezoid_profile', |
Brian Silverman | 598800f | 2013-05-09 17:08:42 -0700 | [diff] [blame] | 26 | '<(AOS)/build/aos.gyp:logging', |
Daniel Petti | 3b1e48f | 2015-02-15 15:57:53 -0800 | [diff] [blame] | 27 | '<(DEPTH)/frc971/actors/actors.gyp:drivetrain_action_lib', |
Brian Silverman | 6f62154 | 2014-04-06 16:00:41 -0700 | [diff] [blame] | 28 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 29 | ], |
| 30 | 'export_dependent_settings': [ |
Brian Silverman | 7ff05bf | 2014-04-10 12:48:25 -0700 | [diff] [blame] | 31 | '<(AOS)/common/controls/controls.gyp:control_loop', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 32 | ], |
| 33 | }, |
| 34 | { |
| 35 | 'target_name': 'auto', |
| 36 | 'type': 'executable', |
| 37 | 'sources': [ |
| 38 | 'auto_main.cc', |
| 39 | ], |
| 40 | 'dependencies': [ |
Brian Silverman | 14fd0fb | 2014-01-14 21:42:01 -0800 | [diff] [blame] | 41 | '<(AOS)/linux_code/linux_code.gyp:init', |
Austin Schuh | 4701741 | 2013-03-10 11:50:46 -0700 | [diff] [blame] | 42 | 'auto_queue', |
| 43 | 'auto_lib', |
| 44 | ], |
| 45 | }, |
| 46 | ], |
| 47 | } |