blob: f580d2b4badd8c1f3f4f64fe2b7c5e5d0eeaa839 [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.gni")
executable("bin") {
testonly = true
output_name = "example_hlcpp_protocol_test"
sources = [ "main.cc" ]
deps = [
"//examples/fidl/fuchsia.examples",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:unit",
"//src/lib/testing/loop_fixture",
"//third_party/googletest:gtest_main",
]
}
fuchsia_unittest_package("example-hlcpp-protocol-test") {
deps = [ ":bin" ]
}
group("testing") {
testonly = true
deps = [ ":example-hlcpp-protocol-test" ]
}