blob: 152ada3532c8f8fff52b3db3fda040e1c7f5a6be [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 Beckd4dfa682018-10-24 17:09:46 +010011 BackendContextRegistry.cpp \
David Beck32cbb0c2018-10-09 15:46:08 +010012 BackendRegistry.cpp \
David Beckb30c5332018-09-28 16:51:01 +010013 CpuTensorHandle.cpp \
David Beckd3360cd2018-10-15 10:33:33 +010014 ILayerSupport.cpp \
David Beckb30c5332018-09-28 16:51:01 +010015 MemCopyWorkload.cpp \
David Beck3e9e1152018-10-17 14:17:50 +010016 LayerSupportRegistry.cpp \
David Beckb30c5332018-09-28 16:51:01 +010017 OutputHandler.cpp \
18 StringMapping.cpp \
19 WorkloadData.cpp \
20 WorkloadFactory.cpp
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010021
22# COMMON_TEST_SOURCES contains the list of files to be included
23# in the Android unit test build (armnn-tests) and it is picked
24# up by the Android.mk file in the root of ArmNN
25
26COMMON_TEST_SOURCES := \
27 test/WorkloadDataValidation.cpp \
28 test/TensorCopyUtils.cpp \
29 test/LayerTests.cpp
David Beckd4dfa682018-10-24 17:09:46 +010030