Austin Schuh | 572ff40 | 2015-11-08 12:17:50 -0800 | [diff] [blame] | 1 | package(default_visibility = ['//y2014:__subpackages__']) |
| 2 | |
| 3 | py_binary( |
| 4 | name = 'drivetrain', |
| 5 | srcs = [ |
| 6 | 'drivetrain.py', |
| 7 | ], |
| 8 | deps = [ |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame^] | 9 | '//external:python-gflags', |
| 10 | '//external:python-glog', |
Austin Schuh | 572ff40 | 2015-11-08 12:17:50 -0800 | [diff] [blame] | 11 | '//frc971/control_loops/python:controls', |
Austin Schuh | edc317c | 2015-11-08 14:07:42 -0800 | [diff] [blame] | 12 | ], |
| 13 | ) |
| 14 | |
Austin Schuh | 0e99773 | 2015-11-08 15:14:53 -0800 | [diff] [blame] | 15 | py_binary( |
Austin Schuh | edc317c | 2015-11-08 14:07:42 -0800 | [diff] [blame] | 16 | name = 'polydrivetrain', |
| 17 | srcs = [ |
| 18 | 'polydrivetrain.py', |
| 19 | 'drivetrain.py', |
| 20 | ], |
| 21 | deps = [ |
| 22 | '//frc971/control_loops/python:controls', |
Austin Schuh | e456f15 | 2015-11-27 13:44:39 -0800 | [diff] [blame^] | 23 | '//external:python-gflags', |
| 24 | '//external:python-glog', |
Austin Schuh | edc317c | 2015-11-08 14:07:42 -0800 | [diff] [blame] | 25 | ], |
| 26 | ) |
| 27 | |
Austin Schuh | 0e99773 | 2015-11-08 15:14:53 -0800 | [diff] [blame] | 28 | py_library( |
| 29 | name = 'polydrivetrain_lib', |
| 30 | srcs = [ |
| 31 | 'polydrivetrain.py', |
| 32 | 'drivetrain.py', |
| 33 | ], |
| 34 | deps = [ |
| 35 | '//frc971/control_loops/python:controls', |
| 36 | ], |
| 37 | ) |
| 38 | |
Austin Schuh | edc317c | 2015-11-08 14:07:42 -0800 | [diff] [blame] | 39 | py_binary( |
| 40 | name = 'claw', |
| 41 | srcs = [ |
| 42 | 'claw.py', |
| 43 | ], |
| 44 | deps = [ |
Austin Schuh | 0e99773 | 2015-11-08 15:14:53 -0800 | [diff] [blame] | 45 | ':polydrivetrain_lib', |
Austin Schuh | edc317c | 2015-11-08 14:07:42 -0800 | [diff] [blame] | 46 | '//frc971/control_loops/python:controls', |
Austin Schuh | 572ff40 | 2015-11-08 12:17:50 -0800 | [diff] [blame] | 47 | ] |
| 48 | ) |
Austin Schuh | 9d4aca8 | 2015-11-08 14:41:31 -0800 | [diff] [blame] | 49 | |
| 50 | py_binary( |
| 51 | name = 'shooter', |
| 52 | srcs = [ |
| 53 | 'shooter.py', |
| 54 | ], |
| 55 | deps = [ |
| 56 | '//frc971/control_loops/python:controls', |
| 57 | ] |
| 58 | ) |