blob: ac5ec7b2673ec275478aff2c140fbb7b28d9fd4e [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") {
sources = [
"diagnostics.cc",
"lockup_detector.cc",
]
deps = [
"tests",
"//zircon/kernel/lib/backtrace",
"//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" ]
}