blob: 09f8df45969a28a8e6f9800aaf0ae469d50117de [file] [log] [blame]
# Copyright 2019 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_library.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
group("tests") {
testonly = true
deps = [
":recovery_integration_test",
]
}
rustc_library("bin") {
testonly = true
with_unit_tests = true
name = "recovery_integration"
edition = "2018"
deps = [
"//garnet/public/rust/fdio",
"//garnet/public/rust/fuchsia-async",
"//garnet/public/rust/fuchsia-component",
"//garnet/public/rust/fuchsia-runtime",
"//sdk/fidl/fuchsia.sys:fuchsia.sys-rustc",
"//third_party/rust_crates:failure",
"//third_party/rust_crates:futures-preview",
]
}
test_package("recovery_integration_test") {
deps = [
":bin",
]
tests = [
{
name = "recovery_integration_lib_test"
environments = basic_envs
},
]
}