blob: 57791f104fe65bdd04d703ccded61e78d446707a [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/package.gni")
import("//build/rust/rustc_test.gni")
rustc_test("test") {
name = "session_manager_integration_tests"
edition = "2018"
source_root = "src/main.rs"
deps = [
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2-rustc",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/syslog/rust:syslog",
"//src/session/bin/session_manager:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/main.rs" ]
}
package("session_manager_integration_tests") {
testonly = true
deps = [ ":test" ]
tests = [
{
name = "session_manager_integration_tests"
},
]
meta = [
{
path = "meta/session_manager_integration_tests.cml"
dest = "session_manager_integration_tests.cm"
},
]
}