blob: 2190158c2a61a3db3054d6d8f3bfc1a90e0c77c2 [file]
# 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_component") {
version = "0.1.0"
edition = "2018"
plugin_deps = [
"bind:ffx_component_bind",
"knock:ffx_knock",
"list:ffx_component_list",
"run:ffx_component_run",
"run-legacy:ffx_component_run_legacy",
"select:ffx_component_select",
"show:ffx_component_show",
"stop:ffx_component_stop",
"//src/sys/run_test_suite/ffx/component_test:ffx_component_test",
]
sources = [ "src/args.rs" ]
}
group("tests") {
testonly = true
deps = [
":ffx_component_tests",
"bind:ffx_component_bind_tests",
"knock:ffx_knock_tests",
"list:ffx_component_list_tests",
"run-legacy:ffx_component_run_legacy_tests",
"select:ffx_component_select_tests",
"show:ffx_component_show_tests",
"stop:ffx_component_stop_tests",
]
}