blob: b6777e9024170f3c9735c69cd17f0568583d6b8c [file] [log] [blame]
Julian Hall072daf82022-08-04 12:04:41 +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 protected-storage service provider
7# within a secure partition.
8#-------------------------------------------------------------------------------
9
10#-------------------------------------------------------------------------------
11# Common components for protected-storage sp deployments
12#
13#-------------------------------------------------------------------------------
14add_components(TARGET "protected-storage"
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 Kis3ed2e052023-06-28 14:19:31 +020023 "components/rpc/common/endpoint"
Julian Hall072daf82022-08-04 12:04:41 +010024 "components/rpc/common/interface"
Imre Kis3ed2e052023-06-28 14:19:31 +020025 "components/rpc/ts_rpc/common"
26 "components/rpc/ts_rpc/endpoint/sp"
Gabor Ambrus70908d02023-08-15 14:42:38 +020027 "components/rpc/ts_rpc/caller/sp"
28 "components/service/log/factory"
29 "components/service/log/client"
Julian Hall072daf82022-08-04 12:04:41 +010030)
31
32target_sources(protected-storage PRIVATE
33 ${CMAKE_CURRENT_LIST_DIR}/ps_sp.c
34)