blob: 92a5450e38ff9f0dd7933412ada3bf38328d0a1e [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",
]
}