blob: 131108a31cdc0dca160a382723d8dbfce4a30193 [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
import("//build/zircon/migrated_targets.gni")
zx_library("cbuf") {
sources = [ "cbuf.cc" ]
deps = [
":tests",
"//zircon/kernel/lib/ktl",
"//zircon/kernel/lib/zxc",
]
}
source_set("tests") {
# TODO: testonly = true
sources = [ "cbuf_tests.cc" ]
include_dirs = [ "include" ]
deps = [ "//zircon/kernel/lib/unittest" ]
}