blob: 455d2ca7b4488605009ccdfc64d71b9dd40ce47d [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.
##########################################
# Though under //zircon, this build file #
# is meant to be used in the Fuchsia GN #
# build. #
# See fxb/36139. #
##########################################
executable("blobfs") {
sources = [ "main.cc" ]
deps = [
"//zircon/public/lib/bitmap",
"//zircon/public/lib/digest",
"//zircon/public/lib/fbl",
"//zircon/public/lib/fit",
"//zircon/system/ulib/blobfs",
"//zircon/system/ulib/fs-host",
]
if (!is_fuchsia) {
deps += [ "//zircon/public/lib/zx-panic-libc" ]
}
}