blob: 4f47d472ec28f2eabe6bcc062cbbc3e95fcf5d25 [file] [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") {
edition = "2024"
testonly = true
name = "gcs_test_client"
with_unit_tests = true
sources = [ "src/main.rs" ]
deps = [
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-hyper",
"//src/lib/gcs",
"//src/lib/structured_ui",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:hyper",
]
}
}