Brian Silverman | 8c374e0 | 2015-09-06 23:02:21 -0400 | [diff] [blame^] | 1 | package(default_visibility = ['//visibility:public']) |
| 2 | |
| 3 | cc_library( |
| 4 | name = 'constants', |
| 5 | srcs = [ |
| 6 | 'constants.cc', |
| 7 | ], |
| 8 | deps = [ |
| 9 | '//aos/common/logging', |
| 10 | '//aos/common:once', |
| 11 | '//aos/common/network:team_number', |
| 12 | '//frc971/control_loops:state_feedback_loop', |
| 13 | '//y2014/control_loops/drivetrain:polydrivetrain_plants', |
| 14 | ], |
| 15 | ) |
| 16 | |
| 17 | cc_binary( |
| 18 | name = 'joystick_reader', |
| 19 | srcs = [ |
| 20 | 'joystick_reader.cc', |
| 21 | ], |
| 22 | deps = [ |
| 23 | '//aos/prime/input:joystick_input', |
| 24 | '//aos/linux_code:init', |
| 25 | '//aos/common/logging', |
| 26 | '//aos/common:time', |
| 27 | '//aos/common/util:log_interval', |
| 28 | '//aos/common/actions:action_lib', |
| 29 | '//y2014/control_loops/drivetrain:drivetrain_queue', |
| 30 | '//y2014:constants', |
| 31 | '//frc971/queues:gyro', |
| 32 | '//frc971/autonomous:auto_queue', |
| 33 | '//y2014/control_loops/claw:claw_queue', |
| 34 | '//y2014/control_loops/shooter:shooter_queue', |
| 35 | '//y2014/actors:shoot_action_lib', |
| 36 | ], |
| 37 | ) |