blob: 319857b52f3ddd231eb7f2730687fac09a510b1d [file] [log] [blame]
# 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("cpp") {
category = "partner"
sdk_name = "inspect_component_cpp"
stable = true
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",
"//sdk/lib/component/incoming/cpp",
"//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" ]
}