aboutsummaryrefslogtreecommitdiff
path: root/src/backends/backendsCommon/common.mk
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends/backendsCommon/common.mk')
-rw-r--r--src/backends/backendsCommon/common.mk30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/backends/backendsCommon/common.mk b/src/backends/backendsCommon/common.mk
new file mode 100644
index 0000000000..152ada3532
--- /dev/null
+++ b/src/backends/backendsCommon/common.mk
@@ -0,0 +1,30 @@
+#
+# Copyright © 2017 ARM Ltd. All rights reserved.
+# SPDX-License-Identifier: MIT
+#
+
+# COMMON_SOURCES contains the list of files to be included
+# in the Android build and it is picked up by the Android.mk
+# file in the root of ArmNN
+
+COMMON_SOURCES := \
+ BackendContextRegistry.cpp \
+ BackendRegistry.cpp \
+ CpuTensorHandle.cpp \
+ ILayerSupport.cpp \
+ MemCopyWorkload.cpp \
+ LayerSupportRegistry.cpp \
+ OutputHandler.cpp \
+ StringMapping.cpp \
+ WorkloadData.cpp \
+ WorkloadFactory.cpp
+
+# COMMON_TEST_SOURCES contains the list of files to be included
+# in the Android unit test build (armnn-tests) and it is picked
+# up by the Android.mk file in the root of ArmNN
+
+COMMON_TEST_SOURCES := \
+ test/WorkloadDataValidation.cpp \
+ test/TensorCopyUtils.cpp \
+ test/LayerTests.cpp
+