blob: 517806f0b86a340f6d371eb647326c2ea88fba03 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/zircon/zx_library.gni")
zx_library("kernel-debug") {
sdk = "source"
sdk_headers = [ "lib/kernel-debug/kernel-debug.h" ]
sources = [ "kernel-debug.cc" ]
deps = [
"//sdk/fidl/fuchsia.kernel:fuchsia.kernel_cpp",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
public_deps = [ "//zircon/system/ulib/svc" ]
}