Removed Common

Change-Id: I01ea8f07220375c2ad9bc0092281d4f27c642303
diff --git a/aos/protobuf/BUILD b/aos/protobuf/BUILD
index c5439c3..69c49d1 100644
--- a/aos/protobuf/BUILD
+++ b/aos/protobuf/BUILD
@@ -5,7 +5,7 @@
   srcs = ["stack_arena.cc"],
   hdrs = ["stack_arena.h"],
   deps = [
-    "//aos/common/logging:logging",
+    "//aos/logging:logging",
     "//third_party/protobuf",
   ],
 )
@@ -16,7 +16,7 @@
   deps = [
     ":stack_arena",
     "//aos/testing:test_logging",
-    "//aos/common/logging:logging",
+    "//aos/logging:logging",
     "//aos/testing:googletest",
   ],
 )
diff --git a/aos/protobuf/stack_arena.cc b/aos/protobuf/stack_arena.cc
index d1a69d6..da9b004 100644
--- a/aos/protobuf/stack_arena.cc
+++ b/aos/protobuf/stack_arena.cc
@@ -1,4 +1,4 @@
-#include "aos/common/logging/logging.h"
+#include "aos/logging/logging.h"
 
 namespace aos {
 namespace protobuf {
diff --git a/aos/protobuf/stack_arena_test.cc b/aos/protobuf/stack_arena_test.cc
index dfd9151..c9eb5e8 100644
--- a/aos/protobuf/stack_arena_test.cc
+++ b/aos/protobuf/stack_arena_test.cc
@@ -1,6 +1,6 @@
 #include "gtest/gtest.h"
 
-#include "aos/common/logging/logging.h"
+#include "aos/logging/logging.h"
 #include "aos/protobuf/stack_arena.h"
 #include "aos/testing/test_logging.h"