blob: 8df5ab9203d010e1efa29fb51ffd6ba560407adb [file] [log] [blame]
David Beckb30c5332018-09-28 16:51:01 +01001#
2# Copyright © 2017 ARM Ltd. All rights reserved.
3# SPDX-License-Identifier: MIT
4#
5
6# COMMON_SOURCES contains the list of files to be included
7# in the Android build and it is picked up by the Android.mk
8# file in the root of ArmNN
9
10COMMON_SOURCES := \
David Beck32cbb0c2018-10-09 15:46:08 +010011 BackendRegistry.cpp \
David Beckb30c5332018-09-28 16:51:01 +010012 CpuTensorHandle.cpp \
Derek Lamberti84da38b2019-06-13 11:40:08 +010013 ITensorHandleFactory.cpp \
Matteo Martincigh992d6dc2019-01-10 17:34:20 +000014 LayerSupportBase.cpp \
David Beckb30c5332018-09-28 16:51:01 +010015 MemCopyWorkload.cpp \
Derek Lambertic2fe5fb2019-05-08 10:23:08 +010016 OptimizationViews.cpp \
David Beckb30c5332018-09-28 16:51:01 +010017 OutputHandler.cpp \
Derek Lamberti84da38b2019-06-13 11:40:08 +010018 TensorHandleFactoryRegistry.cpp \
David Beckb30c5332018-09-28 16:51:01 +010019 WorkloadData.cpp \
Matteo Martincigh747ef822018-12-18 09:26:39 +000020 WorkloadFactory.cpp \
21 WorkloadUtils.cpp
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010022
23# COMMON_TEST_SOURCES contains the list of files to be included
24# in the Android unit test build (armnn-tests) and it is picked
25# up by the Android.mk file in the root of ArmNN
26
27COMMON_TEST_SOURCES := \
Matteo Martincighf02e6cd2019-05-17 12:15:30 +010028 test/CommonTestUtils.cpp \
Aron Virginas-Tar69362cc2018-11-22 15:04:42 +000029 test/JsonPrinterTestImpl.cpp \
30 test/LayerTests.cpp \
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010031 test/TensorCopyUtils.cpp \
Aron Virginas-Tar69362cc2018-11-22 15:04:42 +000032 test/WorkloadDataValidation.cpp