blob: c613f22586c5b6a75c3284ccb20b8f45a42a48af [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"
Julian Hall072daf82022-08-04 12:04:41 +010027)
28
29target_sources(protected-storage PRIVATE
30 ${CMAKE_CURRENT_LIST_DIR}/ps_sp.c
31)