Fix gralloc.cpp wrong include

Change-Id: I1f6a14b7bef2dc390f4ddf905b9ebb728adfc968
diff --git a/system/gralloc/gralloc.cpp b/system/gralloc/gralloc.cpp
index d7e0248..0c1b835 100644
--- a/system/gralloc/gralloc.cpp
+++ b/system/gralloc/gralloc.cpp
@@ -21,7 +21,13 @@
 #include <errno.h>
 #include <dlfcn.h>
 #include <sys/mman.h>
+
+#if PLATFORM_SDK_VERSION < 28
 #include "gralloc_cb.h"
+#else
+#include "../../shared/OpenglCodecCommon/gralloc_cb.h"
+#endif
+
 #include "goldfish_dma.h"
 #include "FormatConversions.h"
 #include "HostConnection.h"