blob: 08402290eef39db727da4ed7eeefe06c0d2c25ab [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")
rustc_binary("bin") {
name = "ermine_ctl"
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.developer.tiles:fuchsia.developer.tiles-rustc",
"//garnet/public/lib/fidl/rust/fidl",
"//garnet/public/rust/fuchsia-app",
"//garnet/public/rust/fuchsia-async",
"//third_party/rust-crates/rustc_deps:failure",
"//third_party/rust-crates/rustc_deps:futures-preview",
"//third_party/rust-crates/rustc_deps:itertools",
"//third_party/rust-crates/rustc_deps:structopt",
]
}
package("ermine_ctl") {
deprecated_system_image = true
deps = [
":bin",
]
binaries = [
{
name = "ermine_ctl"
},
]
}