Removed Common
Change-Id: I01ea8f07220375c2ad9bc0092281d4f27c642303
diff --git a/y2016/dashboard/BUILD b/y2016/dashboard/BUILD
index a926350..aa26aef 100644
--- a/y2016/dashboard/BUILD
+++ b/y2016/dashboard/BUILD
@@ -25,9 +25,9 @@
deps = [
':gen_embedded',
'//aos/linux_code:init',
- '//aos/common/logging',
- '//aos/common/util:phased_loop',
- '//aos/common:time',
+ '//aos/logging',
+ '//aos/util:phased_loop',
+ '//aos/time:time',
'//frc971/autonomous:auto_queue',
'//third_party/seasocks',
'//y2016/vision:vision_queue',
diff --git a/y2016/dashboard/dashboard.cc b/y2016/dashboard/dashboard.cc
index 4b4c0e9..5882eea 100644
--- a/y2016/dashboard/dashboard.cc
+++ b/y2016/dashboard/dashboard.cc
@@ -11,10 +11,10 @@
#include "seasocks/Server.h"
#include "aos/linux_code/init.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/time.h"
-#include "aos/common/util/phased_loop.h"
-#include "aos/common/mutex.h"
+#include "aos/logging/logging.h"
+#include "aos/time/time.h"
+#include "aos/util/phased_loop.h"
+#include "aos/mutex/mutex.h"
#include "frc971/autonomous/auto.q.h"
diff --git a/y2016/dashboard/dashboard.h b/y2016/dashboard/dashboard.h
index e093cb9..a95c476 100644
--- a/y2016/dashboard/dashboard.h
+++ b/y2016/dashboard/dashboard.h
@@ -12,9 +12,9 @@
#include "seasocks/WebSocket.h"
#include "aos/linux_code/init.h"
-#include "aos/common/time.h"
-#include "aos/common/util/phased_loop.h"
-#include "aos/common/mutex.h"
+#include "aos/time/time.h"
+#include "aos/util/phased_loop.h"
+#include "aos/mutex/mutex.h"
namespace y2016 {
namespace dashboard {