blob: 0c6ec02f683517060148b3468f949a4b4580214e [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 Magenta build.
sources = [
"vmofs.cpp",
]
public_configs = [ ":vmofs_config" ]
public_deps = [
"//magenta/system/ulib/fs",
"//magenta/system/ulib/mx",
"//magenta/system/ulib/mxcpp",
"//magenta/system/ulib/fbl",
]
}