Added //third_party:wpilib target to aid WPILIB upgrading
Otherwise, every year, we need to edit all the targets to point to
the new WPILib. This makes it much easier durring the beta test.
Change-Id: Ia26ef21aafe8a690242582ebfa4e391e44f8ac64
diff --git a/third_party/BUILD b/third_party/BUILD
new file mode 100644
index 0000000..da60a79
--- /dev/null
+++ b/third_party/BUILD
@@ -0,0 +1,6 @@
+cc_library(
+ name = 'wpilib',
+ deps = ['//third_party/allwpilib_2016:wpilib'],
+ visibility = ['//visibility:public'],
+ linkstatic = True,
+)