blob: 70ecd3f172e884d095bd112f1d6f37e61f2aff52 [file] [log] [blame]
# Copyright 2019 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.
group("fs-mount") {
deps = [ ":mount" ]
}
executable("mount") {
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.fshost:fuchsia.fshost_llcpp",
"//src/storage/fshost:headers",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/service:service-llcpp",
]
# TODO(fxbug.dev/94768): This target uses mutable tables which are deprecated,
# rather than builders.
configs += [ "//build/cpp:fidl-wire-deprecated-mutable-tables" ]
}