blob: 90cd60e2966915f11a6378ca4bc2ead782929f8b [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/rust/rustc_binary.gni")
import("//build/package.gni")
rustc_binary("bin") {
name = "onet"
edition = "2018"
deps = [
"//garnet/public/rust/fdio",
"//garnet/public/fidl/fuchsia.overnet:fuchsia.overnet-rustc",
"//garnet/public/rust/fuchsia-app",
"//garnet/public/rust/fuchsia-async",
"//garnet/public/rust/fuchsia-zircon",
"//third_party/rust-crates/rustc_deps:clap",
"//third_party/rust-crates/rustc_deps:futures-preview",
"//third_party/rust-crates/rustc_deps:failure",
]
}
package("onet") {
meta = [
{
path = "meta/onet.cmx"
dest = "onet.cmx"
},
]
deps = [
":bin",
]
binary = "onet"
}