blob: 5f4b00fdbe492f610675a21891a6cd71719c1f8f [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") {
kernel = true
sources = [ "cbuf.cc" ]
deps = [
":tests",
"//zircon/kernel/lib/zxc",
]
}
source_set("tests") {
# TODO: testonly = true
sources = [ "cbuf_tests.cc" ]
include_dirs = [ "include" ]
deps = [ "//zircon/kernel/lib/unittest" ]
}