blob: abb49ee6d255e9a2a37d598804a4dcb6f26016ec [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_c",
"//zircon/system/ulib/async",
"//zircon/system/ulib/fidl",
"//zircon/system/ulib/fidl-async",
"//zircon/system/ulib/zircon-internal",
"//zircon/system/ulib/zx",
]
public_deps = [ "//zircon/system/ulib/svc" ]
# TODO(fxbug.dev/95833): This target uses the deprecated C bindings.
# Consider switching to the C++ bindings. See linked bug for details.
configs += [ "//build/c:fidl-deprecated-c-bindings" ]
}