blob: 534e43208307a79a0f49935557eb4ab35a5e628f [file] [log] [blame]
# 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("wlan-frame-writer-macro") {
name = "wlan_frame_writer_macro"
version = "0.1.0"
edition = "2018"
deps = [
"//third_party/rust_crates:proc-macro-hack",
"//third_party/rust_crates:proc-macro2",
"//third_party/rust_crates:quote",
"//third_party/rust_crates:syn",
]
sources = [
"src/frame_writer.rs",
"src/header.rs",
"src/ie.rs",
"src/lib.rs",
]
}