blob: de29e64888321d0f09152c977be1e36958cbfbc3 [file] [log] [blame]
# Copyright 2022 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/components.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("bin") {
name = "start_sl4f"
with_unit_tests = true
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.component:fuchsia.component-rustc",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
]
sources = [ "src/main.rs" ]
}
fuchsia_shell_package("start_sl4f") {
deps = [ ":bin" ]
}