blob: d0ec6121869b249c7573909dee2acce3919c9937 [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("//src/sys/build/fuchsia_unittest_package.gni")
group("hanging_get_helper") {
public_deps = [ ":lib" ]
}
group("tests") {
testonly = true
deps = [ ":hanging_get_helper_unittest" ]
}
source_set("lib") {
visibility = [ ":*" ]
public = [ "hanging_get_helper.h" ]
public_deps = [ "//zircon/public/lib/fit" ]
}
executable("hanging_get_helper_unittest_bin") {
testonly = true
sources = [ "hanging_get_helper_unittest.cc" ]
deps = [
":lib",
"//src/lib/fxl/test:gtest_main",
]
}
fuchsia_unittest_package("hanging_get_helper_unittest") {
deps = [ ":hanging_get_helper_unittest_bin" ]
}