# 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/components.gni") | |
import("//build/rust/rustc_binary.gni") | |
rustc_binary("bin") { | |
version = "0.1.0" | |
name = "criterion_bench" | |
edition = "2021" | |
deps = [ "//src/developer/fuchsia-criterion" ] | |
sources = [ "src/main.rs" ] | |
} | |
fuchsia_shell_package("criterion_bench") { | |
deps = [ ":bin" ] | |
} |