blob: bdf1da9263f92e2903d932336f56a37f4b5711c9 [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/unification/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/public/lib/async",
"//zircon/public/lib/fidl",
"//zircon/public/lib/zircon-internal",
"//zircon/public/lib/zx",
"//zircon/system/ulib/fidl-async",
]
public_deps = [ "//zircon/system/ulib/svc" ]
}