blob: ed473d2b7c84840b37bb0209ead2e4cbe1207d6f [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:fuchsia.examples_hlcpp",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:unit",
"//src/lib/fxl/test:gtest_main",
"//src/lib/testing/loop_fixture",
]
}
fuchsia_unittest_package("example-hlcpp-protocol-test") {
deps = [ ":bin" ]
}
group("hermetic_tests") {
testonly = true
deps = [ ":example-hlcpp-protocol-test" ]
}