blob: 517fc5cd0600e1ec9136ebc2bb5782930b8b4f1e [file]
# Copyright 2026 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("trf_codegen_macro") {
edition = "2024"
with_unit_tests = true
deps = [
"//third_party/rust_crates:proc-macro2",
"//third_party/rust_crates:quote",
"//third_party/rust_crates:syn",
]
sources = [ "src/lib.rs" ]
}
group("tests") {
testonly = true
deps = [ ":trf_codegen_macro_test($host_toolchain)" ]
}