blob: 999a81d54d7f2537e0e8a72b176b975606d73528 [file] [log] [blame]
# Copyright 2021 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("jtrace") {
sources = [
"jtrace.cc",
"jtrace_internal.h",
]
deps = [
"//sdk/lib/fit:headers",
"//zircon/kernel/lib/arch",
"//zircon/kernel/lib/console",
"//zircon/kernel/lib/debuglog",
"//zircon/kernel/lib/io",
"//zircon/kernel/lib/ktl",
"//zircon/kernel/lib/syscalls",
"//zircon/kernel/vm",
"//zircon/system/ulib/affine",
"//zircon/system/ulib/fbl:headers",
"//zircon/system/ulib/lazy_init",
"//zircon/system/ulib/pretty",
]
public_configs = [
"//zircon/kernel:jtrace_config",
"//zircon/kernel:persistent_ram_config",
]
}