Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 1 | { |
| 2 | 'targets': [ |
| 3 | { |
Brian Silverman | 5b433df | 2014-02-17 11:57:37 -0800 | [diff] [blame] | 4 | 'target_name': 'claw_loop', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 5 | 'type': 'static_library', |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 6 | 'sources': ['claw.q'], |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 7 | 'variables': { |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 8 | 'header_path': 'frc971/control_loops/claw', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 9 | }, |
| 10 | 'dependencies': [ |
| 11 | '<(AOS)/common/common.gyp:control_loop_queues', |
Brian Silverman | e0a9546 | 2014-02-17 00:41:09 -0800 | [diff] [blame] | 12 | '<(DEPTH)/frc971/control_loops/control_loops.gyp:queues', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 13 | ], |
| 14 | 'export_dependent_settings': [ |
| 15 | '<(AOS)/common/common.gyp:control_loop_queues', |
Brian Silverman | e0a9546 | 2014-02-17 00:41:09 -0800 | [diff] [blame] | 16 | '<(DEPTH)/frc971/control_loops/control_loops.gyp:queues', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 17 | ], |
| 18 | 'includes': ['../../../aos/build/queues.gypi'], |
| 19 | }, |
| 20 | { |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 21 | 'target_name': 'claw_lib', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 22 | 'type': 'static_library', |
| 23 | 'sources': [ |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 24 | 'claw.cc', |
Austin Schuh | cda86af | 2014-02-16 16:16:39 -0800 | [diff] [blame] | 25 | 'claw_motor_plant.cc', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 26 | ], |
| 27 | 'dependencies': [ |
Brian Silverman | 5b433df | 2014-02-17 11:57:37 -0800 | [diff] [blame] | 28 | 'claw_loop', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 29 | '<(AOS)/common/common.gyp:controls', |
| 30 | '<(DEPTH)/frc971/frc971.gyp:constants', |
| 31 | '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop', |
Brian | a6553ed | 2014-04-02 21:26:46 -0700 | [diff] [blame^] | 32 | '<(AOS)/common/controls/controls.gyp:polytope', |
James Kuszmaul | f63b0ae | 2014-03-25 16:52:11 -0700 | [diff] [blame] | 33 | '<(DEPTH)/frc971/control_loops/control_loops.gyp:coerce_goal', |
Brian Silverman | f48fab3 | 2014-03-09 14:32:24 -0700 | [diff] [blame] | 34 | '<(AOS)/common/logging/logging.gyp:queue_logging', |
Brian Silverman | 6dd2c53 | 2014-03-29 23:34:39 -0700 | [diff] [blame] | 35 | '<(AOS)/common/logging/logging.gyp:matrix_logging', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 36 | ], |
| 37 | 'export_dependent_settings': [ |
Brian Silverman | 5b433df | 2014-02-17 11:57:37 -0800 | [diff] [blame] | 38 | 'claw_loop', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 39 | '<(AOS)/common/common.gyp:controls', |
| 40 | '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop', |
Brian | a6553ed | 2014-04-02 21:26:46 -0700 | [diff] [blame^] | 41 | '<(AOS)/common/controls/controls.gyp:polytope', |
James Kuszmaul | f63b0ae | 2014-03-25 16:52:11 -0700 | [diff] [blame] | 42 | '<(DEPTH)/frc971/control_loops/control_loops.gyp:coerce_goal', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 43 | ], |
| 44 | }, |
| 45 | { |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 46 | 'target_name': 'claw_lib_test', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 47 | 'type': 'executable', |
| 48 | 'sources': [ |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 49 | 'claw_lib_test.cc', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 50 | ], |
| 51 | 'dependencies': [ |
| 52 | '<(EXTERNALS):gtest', |
Brian Silverman | 5b433df | 2014-02-17 11:57:37 -0800 | [diff] [blame] | 53 | 'claw_loop', |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 54 | 'claw_lib', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 55 | '<(AOS)/common/common.gyp:queue_testutils', |
| 56 | '<(DEPTH)/frc971/control_loops/control_loops.gyp:state_feedback_loop', |
| 57 | ], |
| 58 | }, |
| 59 | { |
Austin Schuh | d36c369 | 2014-02-18 21:00:57 -0800 | [diff] [blame] | 60 | 'target_name': 'claw_calibration', |
| 61 | 'type': 'executable', |
| 62 | 'sources': [ |
| 63 | 'claw_calibration.cc', |
| 64 | ], |
| 65 | 'dependencies': [ |
| 66 | '<(AOS)/linux_code/linux_code.gyp:init', |
| 67 | 'claw_loop', |
| 68 | '<(AOS)/common/common.gyp:controls', |
| 69 | '<(DEPTH)/frc971/frc971.gyp:constants', |
| 70 | ], |
| 71 | }, |
| 72 | { |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 73 | 'target_name': 'claw', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 74 | 'type': 'executable', |
| 75 | 'sources': [ |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 76 | 'claw_main.cc', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 77 | ], |
| 78 | 'dependencies': [ |
| 79 | '<(AOS)/linux_code/linux_code.gyp:init', |
Austin Schuh | 3bb9a44 | 2014-02-02 16:01:45 -0800 | [diff] [blame] | 80 | 'claw_lib', |
Brian Silverman | d4417aa | 2014-01-18 12:45:12 -0800 | [diff] [blame] | 81 | ], |
| 82 | }, |
| 83 | ], |
| 84 | } |