blob: 6c199dbc9f39da5163f4de5641a0bacfbeb7d858 [file]
# 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("//src/developer/ffx/build/ffx_plugin.gni")
ffx_plugin("ffx_repository_server_start") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
deps = [
"//sdk/fidl/fuchsia.developer.ffx:fuchsia.developer.ffx_rust",
"//src/developer/ffx/lib/errors:lib",
"//src/developer/ffx/lib/fidl-fuchsia-developer-ffx-ext",
"//src/developer/ffx/lib/pkg",
"//src/developer/ffx/lib/writer:lib",
"//src/lib/network/fidl_fuchsia_net_ext",
"//third_party/rust_crates:serde",
]
test_deps = [
"//src/developer/ffx/config:lib",
"//src/lib/fuchsia-async",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:serial_test",
]
}