blob: df0a34abca20176d0f7b1acf024d677f0a44569e [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.
import("$zx_build/public/gn/package.gni")
zx_library("fs-pty") {
static = true
sources = []
deps = [
":common",
]
}
source_set("common") {
visibility = [ ":*" ]
sources = [
"include/lib/fs-pty/service.h",
"include/lib/fs-pty/tty-connection-internal.h",
"service.cc",
]
include_dirs = [ "include" ]
public_deps = [
"$zx/system/fidl/fuchsia-hardware-pty:llcpp",
"$zx/system/fidl/fuchsia-io:llcpp",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fit",
"$zx/system/ulib/fs",
"$zx/system/ulib/zx",
]
deps = [
"$zx/system/fidl/fuchsia-io:llcpp",
"$zx/system/ulib/fidl-async:fidl-async-cpp",
"$zx/system/ulib/zircon",
]
}