blob: 927cff28660f8418dc9cf7ffb1210b98652d7cae [file] [edit]
# 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 = "2024"
name = "test_list"
sources = [ "src/lib.rs" ]
deps = [
"//src/lib/diagnostics/log/types:types-serde",
"//third_party/rust_crates:serde",
]
}
group("test_list") {
public_deps = [ ":lib" ]
}