blob: b0340343045a04fef91923aba1fa7e7f2929731e [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.
import("//build/test/test_package.gni")
source_set("fidl") {
sources = [ "hanging_getter.h" ]
public_deps = [ "//zircon/public/lib/fit" ]
}
executable("tests") {
testonly = true
output_name = "bt-lib-fidl-unittests"
sources = [ "hanging_getter_unittest.cc" ]
deps = [
":fidl",
"//sdk/lib/fidl/cpp",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
]
}