blob: 569abdd71f877761a678d471c14e2236cd2cfabd [file] [log] [blame]
# Copyright 2020 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("lockup_detector") {
kernel = true
sources = [ "lockup_detector.cc" ]
deps = [
"tests",
"//zircon/kernel/lib/boot-options",
"//zircon/kernel/lib/console",
"//zircon/kernel/lib/counters",
"//zircon/kernel/lib/crashlog",
"//zircon/kernel/lib/version",
"//zircon/kernel/object",
"//zircon/system/ulib/affine",
]
public_deps = [ "//zircon/kernel/lib/ktl:headers" ]
}