blob: 6181887da68180c44e6211b0e63aa7b941c5e4cc [file] [log] [blame] [edit]
# 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 = [
"knock:ffx_knock",
"list:ffx_component_list",
"run:ffx_component_run",
"select:ffx_component_select",
"show:ffx_component_show",
"//src/sys/run_test_suite/ffx/component_test:ffx_component_test",
]
sources = [ "src/args.rs" ]
}
group("tests") {
testonly = true
deps = [
":ffx_component_tests",
"knock:ffx_knock_tests",
"list:ffx_component_list_tests",
"run:ffx_component_run_tests",
"select:ffx_component_select_tests",
"show:ffx_component_show_tests",
]
}