Move 2015-specific code to its own folder.

Known issues:
  -I didn't change the namespace for it, but I am open to discussion
   on doing that in a separate change.
  -There are a couple of files which should get split out into
   year-specific and not-year-specific files to reduce how much needs
   to get copied around each year still.
  -The control loop python code doesn't yet generate code with the
   right #include etc paths.

Change-Id: Iabf078e75107c283247f58a5ffceb4dbd6a0815f
diff --git a/y2015/wpilib/wpilib.gyp b/y2015/wpilib/wpilib.gyp
new file mode 100644
index 0000000..8c1be39
--- /dev/null
+++ b/y2015/wpilib/wpilib.gyp
@@ -0,0 +1,38 @@
+{
+  'targets': [
+    {
+      'target_name': 'wpilib_interface',
+      'type': 'executable',
+      'sources': [
+        'wpilib_interface.cc'
+      ],
+      'dependencies': [
+        '<(AOS)/linux_code/linux_code.gyp:init',
+        '<(AOS)/common/common.gyp:stl_mutex',
+        '<(AOS)/build/aos.gyp:logging',
+        '<(EXTERNALS):WPILib',
+        '<(DEPTH)/y2015/y2015.gyp:constants',
+        '<(DEPTH)/y2015/control_loops/drivetrain/drivetrain.gyp:drivetrain_queue',
+        '<(DEPTH)/y2015/control_loops/fridge/fridge.gyp:fridge_queue',
+        '<(DEPTH)/y2015/control_loops/claw/claw.gyp:claw_queue',
+        '<(AOS)/common/controls/controls.gyp:control_loop',
+        '<(AOS)/common/util/util.gyp:log_interval',
+        '<(AOS)/common/common.gyp:time',
+        '<(AOS)/common/logging/logging.gyp:queue_logging',
+        '<(AOS)/common/messages/messages.gyp:robot_state',
+        '<(AOS)/common/util/util.gyp:phased_loop',
+        '<(AOS)/common/messages/messages.gyp:robot_state',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:hall_effect',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:joystick_sender',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:loop_output_handler',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:buffered_pcm',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:gyro_sender',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:dma_edge_counting',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:interrupt_edge_counting',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:encoder_and_potentiometer',
+        '<(DEPTH)/frc971/control_loops/control_loops.gyp:queues',
+        '<(DEPTH)/frc971/wpilib/wpilib.gyp:logging_queue',
+      ],
+    },
+  ],
+}