1 LOCAL_PATH := $(call my-dir)
2
3 ifeq ($(strip $(filter-out $(NDK_KNOWN_ARCHS),$(TARGET_ARCH))),)
4 include $(CLEAR_VARS)
5 LOCAL_MODULE := issue34613-neon
6 LOCAL_ARM_NEON := true
7 LOCAL_SRC_FILES := issue34613-neon.cpp
8 include $(BUILD_SHARED_LIBRARY)
9 endif
10