blob: 2e1ca559b3af28c91b2ec87bd3c64cffec8fb43b [file] [log] [blame]
Julian Hall8ad60432022-08-15 14:11:47 +01001#-------------------------------------------------------------------------------
2# Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
3#
4# SPDX-License-Identifier: BSD-3-Clause
5#
6# Lists components that provide an infrastructure layer for the block-storage
7# service provider that uses a ram-backed block store, partitioned by default
8# using the 'ref' configuration. This infrastructure is intended for test
9# purposes.
10#-------------------------------------------------------------------------------
11
12#-------------------------------------------------------------------------------
13# Infrastructure components
14#
15#-------------------------------------------------------------------------------
16add_components(TARGET "block-storage"
17 BASE_DIR ${TS_ROOT}
18 COMPONENTS
19 "components/service/block_storage/block_store/device"
20 "components/service/block_storage/block_store/device/ram"
21 "components/service/block_storage/block_store/partitioned"
22 "components/service/block_storage/config/ref"
23 "components/service/block_storage/factory/ref_ram"
24)