blob: c2ec9ebb92c0487f8c003d7c3791d37d993b2982 [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/host.gni")
import("//build/rust/rustc_binary.gni")
import("//build/rust/rustc_library.gni")
import("//build/testing/environments.gni")
if (host_toolchain == current_toolchain) {
rustc_binary("bin") {
name = "bindc"
edition = "2018"
with_unit_tests = true
test_environments = [ host_env ]
deps = [
"//src/devices/bind/debugger:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:structopt",
]
sources = [ "src/main.rs" ]
inputs = [
"src/templates/bind.h.template",
"src/templates/fidl.template",
]
}
}
install_host_tools("host") {
deps = [ ":bin($host_toolchain)" ]
outputs = [ "bindc" ]
}
group("tests") {
testonly = true
deps = [
":bin_test($host_toolchain)",
"./examples:tests",
]
}