1# 2# Copyright © 2017,2023 Arm Ltd and Contributors. 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 := \ 11 ArmComputeTensorUtils.cpp \ 12 BaseMemoryManager.cpp 13 14ifeq ($(ARMNN_COMPUTE_CL_ENABLED),1) 15COMMON_SOURCES += \ 16 ArmComputeTuningUtils.cpp 17endif # ARMNN_COMPUTE_CL_ENABLED == 1 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/ArmComputeTensorUtilsTests.cpp \ 25 test/MemCopyTests.cpp 26