blob: c052f42004838089624600660ac6047f5a939358 [file] [log] [blame]
Julian Hall3d0ec042022-09-06 13:26:14 +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 se-proxy service provider
7# within a secure partition.
8#-------------------------------------------------------------------------------
9
10#-------------------------------------------------------------------------------
11# Common components for se-proxy sp deployments
12#
13#-------------------------------------------------------------------------------
14add_components(TARGET "se-proxy"
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 Kis16f07142023-07-05 18:15:07 +020023 "components/rpc/ts_rpc/common"
24 "components/rpc/ts_rpc/endpoint/sp"
Julian Hall3d0ec042022-09-06 13:26:14 +010025)
26
27target_sources(se-proxy PRIVATE
28 ${CMAKE_CURRENT_LIST_DIR}/se_proxy_sp.c
29)