blob: fd8df5040773e3d891ba109da9f653c3872951a0 [file] [log] [blame]
# Copyright 2018 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/package.gni")
import("//build/rust/rustc_binary.gni")
import("//build/host.gni")
if (host_toolchain == current_toolchain) {
rustc_binary("banjo_bin") {
edition = "2018"
deps = [
"//third_party/rust-crates/rustc_deps:structopt",
"//third_party/rust-crates/rustc_deps:pest",
"//third_party/rust-crates/rustc_deps:pest_derive",
"//third_party/rust-crates/rustc_deps:failure",
"//third_party/rust-crates/rustc_deps:serde_json",
"//third_party/rust-crates/rustc_deps:serde",
"//third_party/rust-crates/rustc_deps:serde_derive",
"//third_party/rust-crates/rustc_deps:heck",
]
source_root = "src/main.rs"
}
}
group("banjo") {
public_deps = [
":banjo_bin($host_toolchain)",
]
}