Removed Common

Change-Id: I01ea8f07220375c2ad9bc0092281d4f27c642303
diff --git a/aos/linux_code/starter/BUILD b/aos/linux_code/starter/BUILD
index 74af77d..68b39bd 100644
--- a/aos/linux_code/starter/BUILD
+++ b/aos/linux_code/starter/BUILD
@@ -16,12 +16,12 @@
   deps = [
     '//aos/linux_code:init',
     '//third_party/libevent',
-    '//aos/common/logging',
-    '//aos/common/logging:implementations',
+    '//aos/logging',
+    '//aos/logging:implementations',
     '//aos:once',
-    '//aos/common:time',
-    '//aos/common/libc:aos_strsignal',
-    '//aos/common/util:run_command',
-    '//aos/common:unique_malloc_ptr',
+    '//aos/time:time',
+    '//aos/libc:aos_strsignal',
+    '//aos/util:run_command',
+    '//aos:unique_malloc_ptr',
   ],
 )
diff --git a/aos/linux_code/starter/starter.cc b/aos/linux_code/starter/starter.cc
index 62e540b..0c7fdea 100644
--- a/aos/linux_code/starter/starter.cc
+++ b/aos/linux_code/starter/starter.cc
@@ -29,12 +29,12 @@
 
 #include "third_party/libevent/event.h"
 
-#include "aos/common/libc/aos_strsignal.h"
-#include "aos/common/logging/implementations.h"
-#include "aos/common/logging/logging.h"
-#include "aos/common/time.h"
-#include "aos/common/unique_malloc_ptr.h"
-#include "aos/common/util/run_command.h"
+#include "aos/libc/aos_strsignal.h"
+#include "aos/logging/implementations.h"
+#include "aos/logging/logging.h"
+#include "aos/time/time.h"
+#include "aos/unique_malloc_ptr.h"
+#include "aos/util/run_command.h"
 #include "aos/linux_code/init.h"
 #include "aos/once.h"