blob: e503c9a82103bf83c768dda64871f25b270c61a5 [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.
import("//build/assembly/bootfs_files_for_assembly.gni")
executable("dd") {
visibility = [
":*",
"//build/images/zedboot:*",
]
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.block:fuchsia.hardware.block_cpp",
"//sdk/fidl/fuchsia.hardware.skipblock:fuchsia.hardware.skipblock_cpp",
"//sdk/lib/component/incoming/cpp",
"//sdk/lib/fdio",
"//sdk/lib/stdcompat",
"//src/storage/lib/block_client/cpp",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fzl",
"//zircon/system/ulib/storage/buffer",
"//zircon/system/ulib/zx",
"//zircon/third_party/ulib/safemath",
]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":dd" ]
}