aboutsummaryrefslogtreecommitdiff
path: root/src/backends/common.mk
blob: b1583b987ea723691cb3946b76fb4a97ee7bdda3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# Copyright © 2017 ARM Ltd. All rights reserved.
# SPDX-License-Identifier: MIT
#

# COMMON_SOURCES contains the list of files to be included
# in the Android build and it is picked up by the Android.mk
# file in the root of ArmNN

COMMON_SOURCES := \
    BackendRegistry.cpp \
    CpuTensorHandle.cpp \
    ILayerSupport.cpp \
    MemCopyWorkload.cpp \
    LayerSupportRegistry.cpp \
    OutputHandler.cpp \
    StringMapping.cpp \
    WorkloadData.cpp \
    WorkloadFactory.cpp

# COMMON_TEST_SOURCES contains the list of files to be included
# in the Android unit test build (armnn-tests) and it is picked
# up by the Android.mk file in the root of ArmNN

COMMON_TEST_SOURCES := \
    test/WorkloadDataValidation.cpp \
    test/TensorCopyUtils.cpp \
    test/LayerTests.cpp