blob: 71d61f58d641df310345c8ffe2ffb41f6c130a6f [file] [log] [blame]
# Copyright 2018 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/components.gni")
import("//build/cpp/sdk_shared_library.gni")
import("//build/test.gni")
sdk_shared_library("svc") {
category = "partner"
sources = [
"dir.cc",
"dir.h",
]
public_deps = [ "//zircon/system/ulib/async" ]
deps = [
"//sdk/fidl/fuchsia.io:fuchsia.io_cpp",
"//src/storage/lib/vfs/cpp",
"//zircon/system/ulib/fbl",
]
symbols_api = "svc.ifs"
include_base = "//sdk"
libcxx_linkage = "static"
public_configs = [ "//sdk/config" ]
}