blob: 142b599808b37689e800a08506932751a0ffcf8f [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/package.gni")
import("//build/test/test_package.gni")
executable("bin") {
output_name = "libinspect_example_component"
sources = [ "example.cc" ]
deps = [
"//src/lib/inspect_deprecated:component",
"//zircon/public/lib/async-loop-cpp",
"//zircon/public/lib/async-loop-default",
]
}
executable("test") {
testonly = true
output_name = "libinspect_integration_tests"
sources = [ "test.cc" ]
deps = [
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/files",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gmock",
]
}
test_package("libinspect_integration_tests") {
deps = [
":bin",
":test",
]
binaries = [
{
name = "libinspect_example_component"
},
]
meta = [
{
path = rebase_path("meta/libinspect_example_component.cmx")
dest = "libinspect_example_component.cmx"
},
]
tests = [
{
name = "libinspect_integration_tests"
environments = basic_envs
},
]
}