blob: a56b018a598ab4ab91de3b1b8d57bc3b343e30a3 [file]
# 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")
executable("integration_test") {
testonly = true
output_name = "inspect_cpp_codelab_part_4_integration_test"
sources = [ "integration_test.cc" ]
deps = [
"//examples/diagnostics/inspect/codelab/fidl:fuchsia.examples.inspect",
"//garnet/public/lib/gtest",
"//sdk/fidl/fuchsia.diagnostics",
"//sdk/fidl/fuchsia.io",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/fxl/test:gtest_main",
]
}
fuchsia_component("inspect_cpp_codelab_part_4_integration_test") {
testonly = true
manifest = "integration_part_4.cmx"
deps = [ ":integration_test" ]
}
fuchsia_test("test_spec") {
package = "//examples/diagnostics/inspect/codelab/cpp:inspect_cpp_codelab_integration_tests"
component = ":inspect_cpp_codelab_part_4_integration_test"
}