blob: a1e3ad90bb0d475a2806f876ef89c7e25649b2d3 [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("vmofs_config") {
include_dirs = [ "include" ]
}
static_library("vmofs") {
# Don't forget to update rules.mk as well for the Zircon build.
sources = [
"vmofs.cpp",
]
public_configs = [ ":vmofs_config" ]
public_deps = [
"//zircon/system/ulib/fs",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxcpp",
"//zircon/system/ulib/fbl",
]
}