blob: 8d293165991ebd4e2478a43df319a363f92d19d3 [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 \
David Beckd3360cd2018-10-15 10:33:33 +010013 ILayerSupport.cpp \
David Beckb30c5332018-09-28 16:51:01 +010014 MemCopyWorkload.cpp \
David Beckb30c5332018-09-28 16:51:01 +010015 OutputHandler.cpp \
16 StringMapping.cpp \
17 WorkloadData.cpp \
18 WorkloadFactory.cpp
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010019
20# COMMON_TEST_SOURCES contains the list of files to be included
21# in the Android unit test build (armnn-tests) and it is picked
22# up by the Android.mk file in the root of ArmNN
23
24COMMON_TEST_SOURCES := \
25 test/WorkloadDataValidation.cpp \
26 test/TensorCopyUtils.cpp \
27 test/LayerTests.cpp