blob: 2f92239913df94cad671d76f0690320a5ad7da2e [file] [log] [blame]
# Copyright 2017 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.
config("svcfs_config") {
include_dirs = [ "include" ]
}
static_library("svcfs") {
# Don't forget to update rules.mk as well for the Zircon build.
sources = [
"include/svcfs/svcfs.h",
"svcfs.cpp",
]
public_configs = [ ":svcfs_config" ]
public_deps = [
"//zircon/system/ulib/fs",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/fbl",
]
}