# 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", | |
] | |
} |