blob: d62e661f8efe8571625577f38e06d7e4c9157f1f [file]
# 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/session/bin/session_manager:lib" ]
}
package("session_manager_integration_tests") {
testonly = true
deps = [
":test",
"//src/sys/test_adapters/rust",
]
binaries = [
{
name = "rust_test_adapter"
},
]
tests = [
{
name = "session_manager_integration_tests"
},
]
meta = [
{
path = "meta/session_manager_integration_tests.cml"
dest = "session_manager_integration_tests.cm"
},
]
}