hikey32/64: Be sure to include mali blobs in hikey64_only and hikey32 targets

When we moved to the r9p0 binary update, the Android.mk
TARGET_DEVICE filter was too narrow and ended up skipping over
hikey64 and hikey32.

This results in the hikey64_only/hikey32 target not booting to UI, as
its missing the egl library.

This patch fixes the filtering and allows the target to boot to UI.

Bug: 80063321
Change-Id: Ia72aae2324fdba17ba7aa42417271a0d727d8fe4
Signed-off-by: John Stultz <john.stultz@linaro.org>
diff --git a/mali/utgard/Android.mk b/mali/utgard/Android.mk
index 09aaf31..071cdd2 100644
--- a/mali/utgard/Android.mk
+++ b/mali/utgard/Android.mk
@@ -1,4 +1,4 @@
-ifneq ($(filter hikey, $(TARGET_DEVICE)),)
+ifneq ($(filter hikey hikey64 hikey32, $(TARGET_DEVICE)),)
 LOCAL_PATH := $(call my-dir)
 
 include $(CLEAR_VARS)