blob: 2009bd849eb92e2143345efe1380d2cf3542496e [file] [log] [blame]
# Copyright 2019 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.
zx_library("svc") {
sdk = "source"
sdk_headers = [
"lib/svc/outgoing.h",
"lib/svc/service.h",
]
sources = [
"outgoing.cc",
]
deps = [
"$zx/system/fidl/fuchsia-io:c",
"$zx/system/ulib/fdio",
"$zx/system/ulib/zircon",
]
public_deps = [
"$zx/system/ulib/async:headers",
"$zx/system/ulib/fs:headers",
"$zx/system/ulib/zx:headers",
]
}