| # Copyright 2020 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_test") { |
| version = "0.1.0" |
| edition = "2021" |
| with_unit_tests = true |
| deps = [ |
| "//sdk/fidl/fuchsia.developer.remotecontrol:fuchsia.developer.remotecontrol_rust", |
| "//sdk/fidl/fuchsia.test.manager:fuchsia.test.manager_rust", |
| "//src/developer/ffx/config:lib", |
| "//src/developer/ffx/lib/errors:lib", |
| "//src/developer/ffx/lib/testing:lib", |
| "//src/lib/fidl/rust/fidl", |
| "//src/lib/testing/test_list", |
| "//src/sys/run_test_suite:lib", |
| "//third_party/rust_crates:async-trait", |
| "//third_party/rust_crates:either", |
| "//third_party/rust_crates:futures", |
| "//third_party/rust_crates:lazy_static", |
| "//third_party/rust_crates:serde_json", |
| "//third_party/rust_crates:signal-hook", |
| "//third_party/rust_crates:tracing", |
| ] |
| |
| test_deps = [ |
| "//src/lib/diagnostics/data/rust", |
| "//third_party/rust_crates:tempfile", |
| ] |
| |
| args_deps = [ "//src/lib/diagnostics/data/rust" ] |
| args_sources = [ "src/args.rs" ] |
| |
| sources = [ |
| "src/connector.rs", |
| "src/lib.rs", |
| "src/suite_definition.rs", |
| ] |
| |
| config_data = [ "data/config.json" ] |
| } |