blob: 28862a60c1b7fe7bbf2236bc6c01df95c3c61297 [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("waitfor") {
sources = [ "waitfor.cc" ]
deps = [
"//sdk/fidl/fuchsia.device:fuchsia.device_cpp",
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_cpp",
"//sdk/lib/component/incoming/cpp",
"//sdk/lib/fdio",
"//src/lib/uuid",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/fdio-caller",
]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":waitfor" ]
}