blob: 6e2362936c951668b52a71a238ad004aab997dbe [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")
executable("garnet_benchmarks_bin") {
output_name = "garnet_benchmarks"
sources = [ "benchmarks.cc" ]
deps = [ "//garnet/testing/benchmarking:benchmarking" ]
}
package("garnet_benchmarks") {
testonly = true
deps = [
":garnet_benchmarks_bin",
"//zircon/system/utest/fs-bench",
]
binaries = [
{
name = rebase_path("benchmarks.sh")
dest = "benchmarks.sh"
},
{
shell = true
name = "garnet_benchmarks"
},
{
name = "fs-bench"
},
]
}