aboutsummaryrefslogtreecommitdiff
path: root/src/backends
diff options
context:
space:
mode:
Diffstat (limited to 'src/backends')
-rw-r--r--src/backends/aclCommon/common.mk10
-rw-r--r--src/backends/common.mk16
2 files changed, 26 insertions, 0 deletions
diff --git a/src/backends/aclCommon/common.mk b/src/backends/aclCommon/common.mk
new file mode 100644
index 0000000000..b371bfab9e
--- /dev/null
+++ b/src/backends/aclCommon/common.mk
@@ -0,0 +1,10 @@
+#
+# 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 := ArmComputeTensorUtils.cpp
diff --git a/src/backends/common.mk b/src/backends/common.mk
new file mode 100644
index 0000000000..e65281a1a4
--- /dev/null
+++ b/src/backends/common.mk
@@ -0,0 +1,16 @@
+#
+# 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 := \
+ CpuTensorHandle.cpp \
+ MemCopyWorkload.cpp \
+ OutputHandler.cpp \
+ StringMapping.cpp \
+ WorkloadData.cpp \
+ WorkloadFactory.cpp