blob: a67087f34bee2ebfce7f7f075edc8fb75183577e [file] [log] [blame]
Julian Hall64f1d872022-09-05 16:52:40 +01001#-------------------------------------------------------------------------------
2# Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# Includes components needed for deploying the crypto service provider
7# within a secure partition.
8#-------------------------------------------------------------------------------
9
10#-------------------------------------------------------------------------------
11# Common components for crypto sp deployments
12#
13#-------------------------------------------------------------------------------
14add_components(TARGET "crypto"
15 BASE_DIR ${TS_ROOT}
16 COMPONENTS
17 "components/common/fdt"
18 "components/common/trace"
19 "components/common/utils"
20 "components/config/ramstore"
21 "components/config/loader/sp"
22 "components/messaging/ffa/libsp"
Imre Kisbd8011a2023-07-04 18:00:39 +020023 "components/rpc/common/endpoint"
24 "components/rpc/ts_rpc/common"
25 "components/rpc/ts_rpc/endpoint/sp"
Gabor Ambrus70908d02023-08-15 14:42:38 +020026 "components/service/log/factory"
27 "components/service/log/client"
Julian Hall64f1d872022-09-05 16:52:40 +010028)
29
30target_sources(crypto PRIVATE
31 ${CMAKE_CURRENT_LIST_DIR}/crypto_sp.c
32)