blob: 91e8d7ff1b574acdd8de1d7e98258f593e116dfb [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/lib/bind:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:structopt",
]
sources = [ "src/main.rs" ]
inputs = [
"src/templates/bind_v1.h.template",
"src/templates/bind_v2.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",
]
}