blob: d9ce6c7e11365cbec45ac76e295579ecf77ada26 [file] [log] [blame]
# Copyright 2020 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.
group("tests") {
testonly = true
deps = [ "tests:unittests" ]
}
source_set("async-watchdog") {
sources = [
"watchdog.cc",
"watchdog.h",
]
deps = [
"//src/lib/debug:backtrace-request",
"//src/lib/fxl",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/zx",
]
}