| # Copyright 2022 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_library.gni") | |
| group("args") { | |
| deps = [ ":guest_cli_args" ] | |
| } | |
| rustc_library("guest_cli_args") { | |
| edition = "2024" | |
| deps = [ | |
| "//third_party/rust_crates:argh", | |
| "//third_party/rust_crates:serde", | |
| ] | |
| if (is_host) { | |
| deps += [ "//src/developer/ffx/core:lib" ] | |
| } | |
| sources = [ "src/lib.rs" ] | |
| } |