blob: dab8306e5527f8becf167172a46c2346e7c85f4d [file] [log] [blame]
# Copyright 2019 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/components.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("bin") {
edition = "2021"
name = "iquery_basic_component"
source_root = "main.rs"
deps = [
"//src/lib/diagnostics/inspect/runtime/rust",
"//src/lib/diagnostics/inspect/rust",
"//src/lib/fuchsia",
]
sources = [ "main.rs" ]
}
fuchsia_component("basic_component") {
testonly = true
manifest = "meta/basic_component.cml"
deps = [ ":bin" ]
}