| # 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_wire", |
| "//src/lib/storage/vfs/cpp", |
| "//zircon/system/ulib/fbl", |
| ] |
| |
| symbols_api = "svc.ifs" |
| |
| include_base = "//sdk" |
| |
| libcxx_linkage = "static" |
| |
| public_configs = [ "//sdk/config" ] |
| |
| runtime_deps = [ |
| "//sdk/lib/fdio:fdio_sdk", |
| "//zircon/system/ulib/async-default:async-default_sdk", |
| "//zircon/system/ulib/trace-engine:trace-engine_sdk", |
| ] |
| } |