blob: 6c4bd8eca29c68ace3e0775c2ca2feef154e39e1 [file] [log] [blame]
# Copyright 2022 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/host.gni")
import("//build/rust/rustc_library.gni")
rustc_library("lib") {
edition = "2021"
name = "test_list"
sources = [ "src/lib.rs" ]
deps = [
"//src/lib/diagnostics/data/rust",
"//third_party/rust_crates:serde",
]
}
group("test_list") {
public_deps = [ ":lib" ]
}