Always register libclcore_neon.bc am: f5a5fd6c62

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/rs/+/12139245

Change-Id: I5389d886bab9319380063bc46e6307b8eaee9acd
diff --git a/driver/runtime/Android.mk b/driver/runtime/Android.mk
index 71b5ab2..157841b 100755
--- a/driver/runtime/Android.mk
+++ b/driver/runtime/Android.mk
@@ -129,20 +129,18 @@
 include $(LOCAL_PATH)/build_bc_lib.mk
 endif
 
-# Build a NEON-enabled version of the library (if possible)
+# Build a NEON-enabled version of the library
 # Only build on 32-bit, because we don't need a 64-bit NEON lib
-ifeq ($(ARCH_ARM_HAVE_NEON),true)
-  include $(CLEAR_VARS)
+include $(CLEAR_VARS)
 
-  LOCAL_32_BIT_ONLY := true
+LOCAL_32_BIT_ONLY := true
 
-  LOCAL_MODULE := libclcore_neon.bc
-  LOCAL_CFLAGS += $(clcore_cflags)
-  LOCAL_SRC_FILES := $(clcore_neon_files)
-  LOCAL_CFLAGS += -DARCH_ARM_HAVE_NEON
+LOCAL_MODULE := libclcore_neon.bc
+LOCAL_CFLAGS += $(clcore_cflags)
+LOCAL_SRC_FILES := $(clcore_neon_files)
+LOCAL_CFLAGS += -DARCH_ARM_HAVE_NEON
 
-  include $(LOCAL_PATH)/build_bc_lib.mk
-endif
+include $(LOCAL_PATH)/build_bc_lib.mk
 
 # Build a version of the library with debug info
 include $(CLEAR_VARS)