blob: 622b47cdc2ccc635b85448bf087d16ee7861841e [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
library("fbl") {
kernel = true
sources = [
"arena.cpp",
]
deps = [
":tests",
"$zx/kernel/vm:headers",
]
public_deps = [
"$zx/system/ulib/fbl",
]
}
source_set("tests") {
#TODO: testonly = true
visibility = [ ":*" ]
sources = [
"arena_tests.cpp",
"inline_array_tests.cpp",
"name_tests.cpp",
]
deps = [
":headers",
"$zx/kernel/lib/unittest",
]
}