blob: dcf341596243f51f9a59408efa629ce400912393 [file] [log] [blame] [edit]
# 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") {
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",
]
}
}