blob: 55366fec814be8c49190cc55e3abf4f0fed6161b [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.
import("//build/components/fuchsia_unittest_package.gni")
executable("async-watchdog-unittests") {
testonly = true
sources = [ "watchdog_unittest.cc" ]
deps = [
"//garnet/public/lib/gtest",
"//sdk/lib/sys/cpp",
"//src/lib/async-watchdog",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
"//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",
]
}
fuchsia_unittest_package("unittests") {
package_name = "async-watchdog-unittests"
component_name = "async-watchdog-unittests"
deps = [ ":async-watchdog-unittests" ]
manifest = "meta/async-watchdog-unittests.cmx"
}