blob: 1768157c19014483f889397b9de9ad07154e2bc3 [file] [log] [blame]
# Copyright 2021 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.
if (is_host) {
import("//build/rust/rustc_binary.gni")
rustc_binary("gcs_test_client_bin") {
edition = "2021"
testonly = true
name = "gcs_test_client"
with_unit_tests = true
sources = [ "src/main.rs" ]
deps = [
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-hyper:fuchsia-hyper",
"//src/lib/gcs",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:hyper",
]
}
}