blob: 55ac94b8a8730da7a1c11e0e1a4f7daa84e1fd94 [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"
23 "components/rpc/common/interface"
24 "components/rpc/ffarpc/endpoint"
25)
26
27target_sources(protected-storage PRIVATE
28 ${CMAKE_CURRENT_LIST_DIR}/ps_sp.c
29)