Julian Hall | 3d0ec04 | 2022-09-06 13:26:14 +0100 | [diff] [blame] | 1 | #------------------------------------------------------------------------------- |
Imre Kis | 25a7f8e | 2024-07-17 14:22:39 +0200 | [diff] [blame] | 2 | # Copyright (c) 2022-2024, Arm Limited and Contributors. All rights reserved. |
Julian Hall | 3d0ec04 | 2022-09-06 13:26:14 +0100 | [diff] [blame] | 3 | # |
| 4 | # SPDX-License-Identifier: BSD-3-Clause |
| 5 | # |
| 6 | # A stub infrastructure for the se-proxy. Infrastructure dependencies are all |
| 7 | # realized with stub components that do absolutely nothing. |
| 8 | #------------------------------------------------------------------------------- |
| 9 | |
| 10 | #------------------------------------------------------------------------------- |
| 11 | # Infrastructure components |
| 12 | # |
| 13 | #------------------------------------------------------------------------------- |
| 14 | add_components(TARGET "se-proxy" |
| 15 | BASE_DIR ${TS_ROOT} |
| 16 | COMPONENTS |
Imre Kis | 25a7f8e | 2024-07-17 14:22:39 +0200 | [diff] [blame] | 17 | "components/common/uuid" |
Julian Hall | 3d0ec04 | 2022-09-06 13:26:14 +0100 | [diff] [blame] | 18 | "components/rpc/dummy" |
| 19 | "components/rpc/common/caller" |
| 20 | "components/service/attestation/reporter/stub" |
| 21 | "components/service/attestation/key_mngr/stub" |
| 22 | "components/service/crypto/backend/stub" |
| 23 | "components/service/crypto/client/psa" |
Imre Kis | 25a7f8e | 2024-07-17 14:22:39 +0200 | [diff] [blame] | 24 | "components/service/fwu/common" |
| 25 | "components/service/fwu/provider" |
| 26 | "components/service/fwu/provider/serializer" |
| 27 | "components/service/fwu/psa_fwu_m/agent" |
| 28 | "components/service/fwu/psa_fwu_m/interface/stub" |
Julian Hall | 3d0ec04 | 2022-09-06 13:26:14 +0100 | [diff] [blame] | 29 | "components/service/secure_storage/backend/mock_store" |
| 30 | ) |
| 31 | |
| 32 | target_sources(se-proxy PRIVATE |
| 33 | |
| 34 | ${CMAKE_CURRENT_LIST_DIR}/service_proxy_factory.c |
| 35 | ) |