blob: ed5ea859f30b1248675afbf15418984eee192c40 [file] [log] [blame]
# Copyright 2021 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_session") {
version = "0.1.0"
edition = "2018"
with_unit_tests = true
plugin_deps = [
"add:ffx_session_add",
"launch:ffx_session_launch",
"restart:ffx_session_restart",
"show:ffx_session_show",
]
args_sources = [ "src/args.rs" ]
}
group("tests") {
testonly = true
deps = [
":ffx_session_tests",
"add:ffx_session_add_tests",
"launch:ffx_session_launch_tests",
"restart:ffx_session_restart_tests",
"show:ffx_session_show_tests",
]
}