blob: 555e4b339f2a4f20840eea7fe8b7c2a11b3144b0 [file] [edit]
# Copyright 2020 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_macro.gni")
rustc_macro("test-harness-macro") {
edition = "2024"
deps = [
"//third_party/rust_crates:quote",
"//third_party/rust_crates:syn",
]
sources = [ "src/lib.rs" ]
configs += [ "//build/config/rust/lints:deny_unused_results" ]
}