blob: d771d702fc766ba3b1443d06e8cb9f7640faa8f6 [file] [log] [blame]
# 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("../../../build/ffx_plugin.gni")
ffx_plugin("ffx_component_create") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
args_with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.component:fuchsia.component-rustc",
"//sdk/fidl/fuchsia.component.decl:fuchsia.component.decl-rustc",
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc",
"//src/developer/ffx/plugins/component/common:ffx_component",
"//src/lib/fidl/rust/fidl",
"//src/sys/lib/moniker",
]
args_sources = [ "src/args.rs" ]
sources = [ "src/lib.rs" ]
}