Daniel Petti | 1f44851 | 2013-10-19 19:35:55 +0000 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
| 4 | 'target_name': 'auto_queue', |
| 5 | 'type': 'static_library', |
| 6 | 'sources': ['auto.q'], |
| 7 | 'variables': { |
| 8 | 'header_path': 'bot3/autonomous', |
| 9 | }, |
| 10 | 'dependencies': [ |
| 11 | '<(AOS)/common/common.gyp:queues', |
| 12 | ], |
| 13 | 'export_dependent_settings': [ |
| 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': [ |
| 25 | 'auto_queue', |
| 26 | '<(AOS)/common/common.gyp:controls', |
| 27 | '<(AOS)/build/aos.gyp:logging', |
| 28 | '<(DEPTH)/bot3/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop', |
Daniel Petti | 53b1109 | 2013-11-02 05:53:16 +0000 | [diff] [blame^] | 29 | '<(DEPTH)/frc971/frc971.gyp:constants', |
Daniel Petti | 1f44851 | 2013-10-19 19:35:55 +0000 | [diff] [blame] | 30 | '<(AOS)/common/common.gyp:time', |
| 31 | '<(AOS)/common/common.gyp:timing', |
| 32 | '<(AOS)/common/util/util.gyp:trapezoid_profile', |
| 33 | ], |
| 34 | 'export_dependent_settings': [ |
| 35 | '<(AOS)/common/common.gyp:controls', |
| 36 | ], |
| 37 | }, |
| 38 | { |
| 39 | 'target_name': 'auto', |
| 40 | 'type': 'executable', |
| 41 | 'sources': [ |
| 42 | 'auto_main.cc', |
| 43 | ], |
| 44 | 'dependencies': [ |
| 45 | '<(AOS)/atom_code/atom_code.gyp:init', |
| 46 | 'auto_queue', |
| 47 | 'auto_lib', |
| 48 | ], |
| 49 | }, |
| 50 | ], |
| 51 | } |