blob: 1c41ee0c8bd9dff023971b269478772e7c41f225 [file] [log] [blame]
# Copyright 2018 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/components.gni")
fuchsia_shell_package("runmany") {
deps = [ ":runmany_bin" ]
}
executable("runmany_bin") {
output_name = "runmany"
sources = [ "src/runmany.c" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/zx",
]
}