blob: 009c9f932d5a83b0bb9e2cfb52147e869eb77c03 [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("//src/sys/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" ]
}