blob: a7229806a96c4f7e4d51d249d62b7303831acd34 [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.cc",
]
deps = [
":tests",
"$zx/kernel/vm:headers",
]
public_deps = [
"$zx/system/ulib/fbl",
]
}
source_set("tests") {
#TODO: testonly = true
visibility = [ ":*" ]
sources = [
"arena_tests.cc",
"gparena_tests.cc",
"inline_array_tests.cc",
"name_tests.cc",
]
deps = [
":headers",
"$zx/kernel/lib/unittest",
]
}