IWYU + remove unneeded dependencies
diff --git a/Android.bp b/Android.bp
index 5630565..7d7287a 100644
--- a/Android.bp
+++ b/Android.bp
@@ -16,11 +16,9 @@
         "halimpl/pn54x/nfc_nci.c"
     ],
     shared_libs: [
-        "liblog",
         "libcutils",
+         "liblog",
         "libhwbinder",
-        "libbase",
-        "libutils",
         "libhardware",
     ],
     local_include_dirs: [
diff --git a/halimpl/pn54x/nfc_nci.c b/halimpl/pn54x/nfc_nci.c
index ed9a2ba..29193fc 100644
--- a/halimpl/pn54x/nfc_nci.c
+++ b/halimpl/pn54x/nfc_nci.c
@@ -16,10 +16,10 @@
 
 #define LOG_TAG "NxpNfcNciHal"
 
-#include <utils/Log.h>
 #include <errno.h>
 #include <hardware/hardware.h>
 #include <hardware/nfc.h>
+#include <log/log.h>
 #include <phNxpNciHal_Adaptation.h>
 #include <string.h>
 #include <stdlib.h>