blob: e6618064c6a6f60ce6cd3e5902acdbba922c52ca [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_binary.gni")
import("//src/sys/build/components.gni")
rustc_binary("bin") {
name = "virtual_device_directory"
edition = "2018"
deps = [ "//third_party/rust_crates:anyhow" ]
sources = [ "src/main.rs" ]
}
fuchsia_component("virtual_device_directory") {
component_name = "virtual-device-directory"
manifest = "meta/virtual-device-directory.cmx"
testonly = true
deps = [ ":bin" ]
}