blob: 95e93169bba9b5f962f7a77e11eba9a4625050a7 [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/rust/rustc_library.gni")
import("//src/developer/ffx/build/ffx_plugin.gni")
ffx_plugin("ffx_emulator") {
version = "0.1.0"
edition = "2018"
sources = [
"src/args.rs",
"src/cipd.rs",
"src/lib.rs",
"src/portpicker.rs",
"src/types.rs",
"src/vdl_files.rs",
]
deps = [
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-hyper:fuchsia-hyper",
"//third_party/rust_crates:ansi_term-v0_11_0",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:home",
"//third_party/rust_crates:hyper",
"//third_party/rust_crates:regex",
"//third_party/rust_crates:serial_test",
"//third_party/rust_crates:tempfile",
"//third_party/rust_crates:zip",
]
}