blob: 36164940e7ca42f5c72b3b80d2b0f8ed709c6571 [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("//src/sys/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/public/lib/zx",
]
}