blob: 67ba01b1e4732800771de8e1600ce2035e4e2dda [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
Aron Virginas-Tarf9aeef02018-10-12 15:18:03 +010010COMMON_SOURCES := \
11 ArmComputeTensorUtils.cpp \
12 memory/BaseMemoryManager.cpp \
13 memory/BlobLifetimeManager.cpp \
14 memory/BlobMemoryPool.cpp \
15 memory/OffsetLifetimeManager.cpp \
16 memory/OffsetMemoryPool.cpp \
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010017 memory/PoolManager.cpp
18
19# COMMON_TEST_SOURCES contains the list of files to be included
20# in the Android unit test build (armnn-tests) and it is picked
21# up by the Android.mk file in the root of ArmNN
22
23COMMON_TEST_SOURCES := \
24 test/MemCopyTests.cpp