blob: 6c04ffa08a1f3de43a4cceb0064b519236a54dcf [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
},
]
}