added support for reading sensors from the gyro board
diff --git a/frc971/input/input.gyp b/frc971/input/input.gyp
index 5ac253a..ece9d14 100644
--- a/frc971/input/input.gyp
+++ b/frc971/input/input.gyp
@@ -51,6 +51,25 @@
       ],
     },
     {
+      'target_name': 'gyro_board_reader',
+      'type': 'executable',
+      'sources': [
+        'gyro_board_reader.cc',
+      ],
+      'dependencies': [
+        '<(DEPTH)/frc971/control_loops/drivetrain/drivetrain.gyp:drivetrain_loop',
+        '<(DEPTH)/frc971/queues/queues.gyp:queues',
+        '<(DEPTH)/frc971/control_loops/angle_adjust/angle_adjust.gyp:angle_adjust_loop',
+        '<(DEPTH)/frc971/control_loops/wrist/wrist.gyp:wrist_loop',
+        '<(DEPTH)/frc971/control_loops/index/index.gyp:index_loop',
+        '<(DEPTH)/frc971/control_loops/shooter/shooter.gyp:shooter_loop',
+        '<(AOS)/atom_code/atom_code.gyp:init',
+        '<(DEPTH)/gyro_board/src/libusb-driver/libusb-driver.gyp:libusb_wrap',
+        '<(EXTERNALS):libusb',
+        '<(AOS)/build/aos.gyp:logging',
+      ],
+    },
+    {
       'target_name': 'sensor_receiver',
       'type': 'executable',
       'sources': [
@@ -60,7 +79,6 @@
         '<(AOS)/atom_code/atom_code.gyp:init',
         'sensor_unpacker',
         '<(AOS)/common/sensors/sensors.gyp:sensor_receiver',
-        '<(AOS)/atom_code/atom_code.gyp:init',
       ],
     },
     {