blob: 8850ee819dfad26f69b99dc44fc3ca6e10951c63 [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 = "internal"
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/sys/component/cpp",
"//src/lib/fidl/cpp",
"//zircon/system/ulib/async:async-cpp",
"//zircon/system/ulib/inspect",
"//zircon/system/ulib/zx",
]
public_configs = [ "//sdk/config" ]
}
group("tests") {
testonly = true
deps = [ "tests:inspect_service_llcpp_tests" ]
}