blob: 40533d9f3b7fce253b0f55168732cf845b32696f [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_debug_run") {
version = "0.1.0"
edition = "2018"
args_sources = [ "src/args.rs" ]
sources = [
"src/debug_agent.rs",
"src/lib.rs",
]
deps = [
"//sdk/fidl/fuchsia.debugger:fuchsia.debugger-rustc",
"//src/developer/ffx/lib/symbol-index",
"//src/lib/fuchsia-async",
"//src/lib/zircon/rust:fuchsia-zircon-status",
"//third_party/rust_crates:async-net",
"//third_party/rust_crates:futures-util",
"//third_party/rust_crates:rand",
]
data_deps = [ "//src/developer/debug/zxdb" ]
}