blob: 3ee8444479eed40f44c23761300fb299ac9d2ad0 [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/fxl",
"//zircon/public/lib/async-cpp",
"//zircon/public/lib/zx",
"//zircon/system/ulib/async-default",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/backtrace-request",
]
}