blob: b275480f480a5253bdd72218a8407b8dd85c0009 [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 = [
"//src/lib/fuchsia-async",
"//src/lib/syslog/rust:syslog",
"//src/session/bin/session_manager:lib",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:thiserror",
]
}
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"
},
]
}