blob: c355cd135515961833657de66b2328cd69b30f7e [file] [log] [blame]
# Copyright 2019 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")
import("//build/rust/rustc_test.gni")
rustc_macro("macros") {
name = "fuchsia_vfs_pseudo_fs_mt_macros"
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",
]
}
if (host_toolchain == current_toolchain) {
rustc_test("tests") {
name = "fuchsia_vfs_pseudo_fs_mt_macros_lib_test"
edition = "2018"
deps = [
"//third_party/rust_crates:indoc",
"//third_party/rust_crates:proc-macro-hack",
"//third_party/rust_crates:proc-macro2",
"//third_party/rust_crates:quote",
"//third_party/rust_crates:syn",
]
}
} else {
group("tests") {
testonly = true
public_deps = [ ":tests($host_toolchain)" ]
}
}