blob: f5439dcd591195ffc514fe9f40c213bb7ffa6655 [file] [log] [blame]
# Copyright 2024 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/cpp/library_headers.gni")
library_headers("headers") {
headers = [ "lib/wake-vector.h" ]
}
static_library("wake-vector") {
public_deps = [ ":headers" ]
sources = [ "wake-vector.cc" ]
deps = [
"//zircon/kernel/lib/ktl",
"//zircon/kernel/lib/user_copy",
"//zircon/system/ulib/affine",
]
}
group("tests") {
testonly = true
}
group("kernel-tests") {
# TODO: testonly = true
}
group("phys-tests") {
testonly = true
}
group("boot_tests") {
testonly = true
}