blob: b12ff502614fe8e877e61b79848869834d179974 [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/components.gni")
import("//build/fidl/fidl.gni")
import("//build/rust/rustc_binary.gni")
fuchsia_unittest_package("transit_bench") {
deps = [ ":bin" ]
manifest = "meta/transit_bench.cmx"
}
rustc_binary("bin") {
name = "transit_bench"
edition = "2018"
with_unit_tests = true
deps = [
"//src/developer/fuchsia-criterion",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:lazy_static",
"//third_party/rust_crates:parking_lot",
"//third_party/rust_crates:rand",
"//third_party/rust_crates:thiserror",
"//third_party/rust_crates:tracint",
]
}