Convert bot3 to Bazel too
Change-Id: I330e334977ea0ba6c2b9febf1647d5d9b5cd2d4f
diff --git a/bot3/control_loops/BUILD b/bot3/control_loops/BUILD
new file mode 100644
index 0000000..1dc5c67
--- /dev/null
+++ b/bot3/control_loops/BUILD
@@ -0,0 +1,14 @@
+package(default_visibility = ['//visibility:public'])
+
+cc_library(
+ name = 'position_sensor_sim',
+ srcs = [
+ 'position_sensor_sim.cc',
+ ],
+ hdrs = [
+ 'position_sensor_sim.h',
+ ],
+ deps = [
+ '//bot3/control_loops/elevator:elevator_queue',
+ ],
+)