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