blob: 0f7a3b0ce93060bd4d675ece8f87ad4e83656f7a [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-mkfs") {
deps = [ ":mkfs" ]
}
executable("mkfs") {
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "main.cc" ]
deps = [
"//sdk/lib/fdio",
"//src/lib/storage/fs_management",
"//zircon/public/lib/safemath",
]
}