blob: 654b3c3b52fc8c716fcd46b082b58395717f0a0a [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("//build/zircon/zx_library.gni")
zx_library("service-llcpp") {
sdk = "source"
sdk_headers = [
"lib/service/llcpp/constants.h",
"lib/service/llcpp/service.h",
"lib/service/llcpp/service_handler.h",
]
sources = [ "llcpp/service.cc" ]
public_deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_llcpp",
"//sdk/lib/fit-promise",
"//sdk/lib/stdcompat",
"//src/lib/storage/vfs/cpp",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/zx",
]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_llcpp",
"//sdk/lib/fidl/cpp/wire",
"//zircon/system/ulib/async",
]
}