blob: 217b70a6066a032358854e648bb0321747621b9c [file] [log] [blame]
# Copyright 2023 The Pigweed Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
include($ENV{PW_ROOT}/pw_build/pigweed.cmake)
pw_add_library(pw_multibuf.chunk STATIC
HEADERS
public/pw_multibuf/chunk.h
PUBLIC_INCLUDES
public
PUBLIC_DEPS
pw_assert
pw_bytes
pw_preprocessor
pw_span
pw_sync.mutex
PRIVATE_DEPS
pw_assert.check
SOURCES
chunk.cc
)
pw_add_library(pw_multibuf.test_utils STATIC
HEADERS
public/pw_multibuf/internal/test_utils.h
PUBLIC_INCLUDES
public
PUBLIC_DEPS
pw_multibuf.chunk
pw_allocator.allocator_metric_proxy
pw_allocator.split_free_list_allocator
pw_add_test(pw_multibuf.chunk_test STATIC
SOURCES
chunk_test.cc
PRIVATE_DEPS
pw_multibuf.chunk
pw_multibuf.test_utils
GROUPS
modules
pw_multibuf
)
pw_add_library(pw_multibuf.pw_multibuf STATIC
HEADERS
public/pw_multibuf/multibuf.h
PUBLIC_INCLUDES
public
PUBLIC_DEPS
pw_multibuf.chunk
SOURCES
multibuf.cc
)
pw_add_test(pw_multibuf.multibuf_test STATIC
SOURCES
multibuf_test.cc
PRIVATE_DEPS
pw_multibuf.multibuf
pw_multibuf.test_utils
GROUPS
modules
pw_multibuf
)