blob: d0ad13ff061d3a5828b040ed68c8d2cc2e194ed4 [file] [log] [blame] [edit]
# 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/public/lib/zx",
]
}