blob: e4a6708a8fc5558d1064e5254fefcf60bf3be3e6 [file] [log] [blame]
# Copyright 2018 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/test/test_package.gni")
import("//build/testing/environments.gni")
executable("component_context_provider_example_bin") {
testonly = true
output_name = "component_context_provider_example_test"
sources = [
"component_context_provider_example.cc",
]
deps = [
"//garnet/examples/fidl/echo_client_cpp:lib",
"//garnet/public/lib/gtest",
"//sdk/lib/sys/cpp/testing:unit",
"//src/lib/fxl/test:gtest_main",
]
}
test_package("component_context_provider_example_test") {
deps = [
":component_context_provider_example_bin",
]
tests = [
{
name = "component_context_provider_example_test"
environments = basic_envs
},
]
}