blob: ade4d0aa9e90daed7c4b1a765aa8c57ae4e3bdff [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.
# SDK library to request a backtrace.
zx_library("backtrace-request") {
sdk = "source"
sdk_headers = [ "lib/backtrace-request/backtrace-request.h" ]
sources = []
}
# Internal library to request, detect, and clean up backtrace requests.
# This is a superset of the SDK backtrace-request library.
zx_library("utils") {
sources = [
"backtrace-request-utils.cc",
]
deps = [
"$zx/system/ulib/zircon",
]
}