blob: f40b52bc1b38a640ae358342e5c864eba7a8b62b [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.
# [START first]
import("//build/test.gni")
group("unittests") {
testonly = true
deps = [ ":example-cpp-host-test($host_toolchain)" ]
}
# [END first]
# [START test]
test("example-cpp-host-test") {
sources = [ "main.cc" ]
deps = [
"//examples/fidl/fuchsia.examples:fuchsia.examples_hlcpp",
"//src/lib/fxl/test:gtest_main",
]
}
# [END test]