blob: 94d77801c2f8c3bbd4ad3863ad27388c94cc64c8 [file] [log] [blame] [edit]
# 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",
]
}