blob: 2b9e082fd0b25f420b6119510a88ccbf4e1b3f7b [file] [log] [blame] [edit]
# Copyright 2022 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/cpp/sdk_source_set.gni")
sdk_source_set("inspect_component_cpp") {
category = "partner"
sdk_name = "inspect_component_cpp"
include_base = "//sdk"
sources = [
"component.cc",
"component.h",
"service.cc",
"service.h",
"testing.cc",
"testing.h",
"tree_handler_settings.h",
]
public_deps = [
"//sdk/fidl/fuchsia.inspect:fuchsia.inspect_cpp_wire",
"//sdk/lib/component/outgoing/cpp",
"//src/lib/fidl/cpp",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/inspect",
"//zircon/system/ulib/zx",
]
public_configs = [ "//sdk/config" ]
data_deps = [ "//sdk/lib/inspect:client_includes" ]
}
group("tests") {
testonly = true
deps = [ "tests:inspect_service_llcpp_tests" ]
}