blob: 22aadee0b4d5d67279a51968f1970eab78a82a59 [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/package.gni")
package("runmany") {
deps = [ ":runn" ]
binaries = [
{
name = "runmany"
shell = true
},
]
}
executable("runn") {
output_name = "runmany"
sources = [ "src/runmany.c" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/zx",
]
}