blob: 3ac468469ba3aa7acea31ef9fe16215dc5e5089d [file] [log] [blame]
# Copyright 2019 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")
import("//build/rust/rustc_binary.gni")
rustc_binary("bin") {
version = "0.1.0"
name = "criterion_bench"
edition = "2018"
deps = [
"//src/developer/fuchsia-criterion",
]
}
package("criterion_bench") {
deps = [
":bin",
]
binaries = [
{
name = "criterion_bench"
shell = true
},
]
}