blob: a5ef90038a525bc3978176f1c5fd8b90f06aecb4 [file] [log] [blame]
David Beckb30c5332018-09-28 16:51:01 +01001#
Colm Donelan4e54e9c2023-01-12 22:19:38 +00002# Copyright © 2017,2023 Arm Ltd and Contributors. All rights reserved.
David Beckb30c5332018-09-28 16:51:01 +01003# 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 \
Aron Virginas-Tar60578952018-10-31 11:04:01 +000012 BaseMemoryManager.cpp
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010013
Colm Donelan4e54e9c2023-01-12 22:19:38 +000014ifeq ($(ARMNN_COMPUTE_CL_ENABLED),1)
15COMMON_SOURCES += \
16 ArmComputeTuningUtils.cpp
17endif # ARMNN_COMPUTE_CL_ENABLED == 1
18
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010019# 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 := \
Aron Virginas-Tar13b653f2019-11-01 11:40:39 +000024 test/ArmComputeTensorUtilsTests.cpp \
Aron Virginas-Tarceae3aa2018-10-18 10:39:38 +010025 test/MemCopyTests.cpp