aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMatteo Martincigh <matteo.martincigh@arm.com>2018-08-31 16:18:19 +0100
committerMatthew Bentham <matthew.bentham@arm.com>2018-09-18 12:40:38 +0100
commit69558df6f149647888267caabf72de6b05fb6d53 (patch)
tree988de8315ae2a1916fb76a6664910e5d4d41c940 /test
parent3b0a2dad430654b0ad4124e5055a92d7c19ae786 (diff)
downloadandroid-nn-driver-69558df6f149647888267caabf72de6b05fb6d53.tar.gz
Fix for building the NN Driver correctly without having to set
ALLOW_MISSING_DEPENDENCIES to true on Android versions that don't provide all the HAL versions supported by the NN Driver Change-Id: I7c828649499ca1d7cb26feb93f559e9f1eae33c7
Diffstat (limited to 'test')
-rw-r--r--test/Android.mk9
1 files changed, 7 insertions, 2 deletions
diff --git a/test/Android.mk b/test/Android.mk
index 1cef3787..f96577c5 100644
--- a/test/Android.mk
+++ b/test/Android.mk
@@ -41,7 +41,7 @@ ifeq ($(PLATFORM_VERSION),9)
# regardless of the HAL version used for the build.
LOCAL_CFLAGS+= \
-DARMNN_ANDROID_P
-endif
+endif # PLATFORM_VERSION == 9
LOCAL_SRC_FILES := \
Tests.cpp \
@@ -83,10 +83,13 @@ ifeq ($(PLATFORM_VERSION),9)
# as the 1.0 version of the NN API needs the 1.1 HAL headers to be included regardless.
LOCAL_SHARED_LIBRARIES+= \
android.hardware.neuralnetworks@1.1
-endif
+endif # PLATFORM_VERSION == 9
include $(BUILD_EXECUTABLE)
+ifeq ($(PLATFORM_VERSION),9)
+# The following target is available starting from Android P
+
##########################
# armnn-driver-tests@1.1 #
##########################
@@ -153,3 +156,5 @@ LOCAL_SHARED_LIBRARIES := \
include $(BUILD_EXECUTABLE)
+endif # PLATFORM_VERSION == 9
+