blob: 9e3082ac06cc7f2a16aaaf85504b45a8ca01091e [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
library("fbl") {
kernel = true
sources = [
"arena.cpp",
]
deps = [
":tests",
]
public_deps = [
"$zx/system/ulib/fbl",
# <fbl/arena.h> has #include <zxcpp/new.h>.
"$zx/system/ulib/zxcpp",
]
}
source_set("tests") {
#TODO: testonly = true
visibility = [ ":*" ]
sources = [
"arena_tests.cpp",
"inline_array_tests.cpp",
"name_tests.cpp",
]
deps = [
":headers",
"$zx/kernel/lib/unittest",
]
}