blob: 36e2e59c91c70ab081319970e0780cf2485dd8d6 [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("ping") {
visibility = [
":*",
"//build/images/zedboot:*",
]
sources = [ "ping.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/fbl",
"//zircon/system/ulib/pretty",
"//zircon/system/ulib/zx",
]
}
bootfs_files_for_assembly("bootfs") {
deps = [ ":ping" ]
}