blob: b5739d68e4e33c583922422a3ffbf92c45ad5b8a [file] [log] [blame] [edit]
# 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")
# [START bin]
executable("bin") {
testonly = true
output_name = "fostr_example_test"
sources = [ "main.cc" ]
deps = [
"//examples/fidl/fuchsia.examples",
"//garnet/public/lib/fostr/fidl/fuchsia.examples",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest_main",
]
}
# [END bin]
fuchsia_unittest_package("fostr-example-test") {
deps = [ ":bin" ]
}
group("fostr") {
testonly = true
deps = [ ":fostr-example-test" ]
}