blob: bdac253bdc11d1ee79644d3767b5eeaecbe92e65 [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("lifecycle_placeholder") {
edition = "2024"
deps = [
"//sdk/fidl/fuchsia.process.lifecycle:fuchsia.process.lifecycle_rust",
"//sdk/rust/zx",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-runtime",
"//third_party/rust_crates:futures-util",
"//third_party/rust_crates:log",
]
sources = [ "src/main.rs" ]
}
fuchsia_component("lifecycle") {
testonly = true
component_name = "lifecycle"
manifest = "meta/lifecycle.cml"
deps = [ ":lifecycle_placeholder" ]
}