blob: d8adfff57bb087f31058d2790428808a90b87d22 [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" ]
sources = [ "src/main.rs" ]
}
package("criterion_bench") {
deps = [ ":bin" ]
binaries = [
{
name = "criterion_bench"
shell = true
},
]
}