blob: 278285310cd80041b08185631072492beafdfdbf [file] [log] [blame]
# Copyright 2017 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 = "recovery_ui"
edition = "2018"
with_lto = "fat"
deps = [
"//garnet/public/rust/fuchsia-app",
"//garnet/public/rust/fuchsia-zircon",
"//garnet/public/rust/fuchsia-async",
"//garnet/public/rust/fuchsia-framebuffer",
"//garnet/public/fidl/fuchsia.amber:fuchsia.amber-rustc",
"//third_party/rust-crates/rustc_deps:font-rs",
"//third_party/rust-crates/rustc_deps:failure",
]
}
package("recovery_ui") {
deps = [
":bin",
]
binary = "rust_crates/recovery_ui"
}