blob: 837c1b9f7c37229ca20fdcd38318fec83b5b2aad [file] [log] [blame]
# Copyright 2020 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("//src/sys/build/components.gni")
rustc_binary("no_suite_service_bin") {
testonly = true
name = "no_suite_service"
edition = "2018"
source_root = "no_suite_service.rs"
deps = [
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:thiserror",
]
sources = [ "no_suite_service.rs" ]
}
fuchsia_component("no_suite_service") {
testonly = true
deps = [ ":no_suite_service_bin" ]
manifest = "meta/no_suite_service.cml"
}
group("test_data") {
testonly = true
public_deps = [ ":no_suite_service" ]
}