blob: a24dac786e89a19d4a0556b68e9b3e65c8801dfe [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 internal-trusted-storage service provider
7# within a secure partition.
8#-------------------------------------------------------------------------------
9
10#-------------------------------------------------------------------------------
11# Common components for internal-trusted-storage sp deployments
12#
13#-------------------------------------------------------------------------------
14add_components(TARGET "internal-trusted-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 Kis8f8cc182023-06-27 16:24:49 +020023 "components/rpc/common/endpoint"
Julian Hall072daf82022-08-04 12:04:41 +010024 "components/rpc/common/interface"
Imre Kis8f8cc182023-06-27 16:24:49 +020025 "components/rpc/ts_rpc/common"
26 "components/rpc/ts_rpc/endpoint/sp"
Julian Hall072daf82022-08-04 12:04:41 +010027)
28
29target_sources(internal-trusted-storage PRIVATE
30 ${CMAKE_CURRENT_LIST_DIR}/its_sp.c
31)