blob: 4eb0b6dbc82bb27f5a4dd13e47b5b11465482e2a [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/rust/rustc_test.gni")
import("//build/test/test_package.gni")
group("tests") {
testonly = true
deps = [
":mpmc_tests",
]
}
rustc_library("mpmc") {
name = "mpmc"
edition = "2018"
deps = [
"//third_party/rust_crates:crossbeam",
"//third_party/rust_crates:futures",
]
}
rustc_test("mpmc_lib_test") {
edition = "2018"
source_root = "src/test.rs"
deps = [
":mpmc",
"//garnet/public/rust/fuchsia-async",
"//third_party/rust_crates:futures",
]
}
test_package("mpmc_tests") {
deps = [
":mpmc_lib_test",
]
tests = [
{
name = "mpmc_lib_test"
environments = basic_envs
},
]
}