Update to use the correct logging library.

Test: compiles
Change-Id: I00467b964fd56e6379cddde26152e413f2f00379
diff --git a/gnss/1.0/default/GnssConfiguration.cpp b/gnss/1.0/default/GnssConfiguration.cpp
index 9031c06..0442c83 100644
--- a/gnss/1.0/default/GnssConfiguration.cpp
+++ b/gnss/1.0/default/GnssConfiguration.cpp
@@ -15,6 +15,7 @@
  */
 
 #define LOG_TAG "GnssHAL_GnssConfigurationInterface"
+#include <android/log.h>
 
 #include "GnssConfiguration.h"
 
diff --git a/gnss/1.0/default/GnssDebug.cpp b/gnss/1.0/default/GnssDebug.cpp
index e227e17..d61f91d 100644
--- a/gnss/1.0/default/GnssDebug.cpp
+++ b/gnss/1.0/default/GnssDebug.cpp
@@ -15,6 +15,7 @@
  */
 
 #define LOG_TAG "GnssHAL_GnssDebugInterface"
+#include <android/log.h>
 
 #include "GnssDebug.h"
 
diff --git a/gnss/1.0/default/GnssNavigationMessage.cpp b/gnss/1.0/default/GnssNavigationMessage.cpp
index edae938..f2c69a7 100644
--- a/gnss/1.0/default/GnssNavigationMessage.cpp
+++ b/gnss/1.0/default/GnssNavigationMessage.cpp
@@ -15,6 +15,7 @@
  */
 
 #define LOG_TAG "GnssHAL_GnssNavigationMessageInterface"
+#include <android/log.h>
 
 #include "GnssNavigationMessage.h"
 
diff --git a/tests/memory/1.0/default/MemoryTest.cpp b/tests/memory/1.0/default/MemoryTest.cpp
index ed65410..1f804ca 100644
--- a/tests/memory/1.0/default/MemoryTest.cpp
+++ b/tests/memory/1.0/default/MemoryTest.cpp
@@ -22,6 +22,8 @@
 
 #include <android/hidl/memory/1.0/IMemory.h>
 
+#include <android/log.h>
+
 using android::hidl::memory::V1_0::IMemory;
 
 namespace android {