| # Copyright 2024 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_binary.gni") | |
| # This target must be added to the build graph when updating the source file. | |
| rustc_binary("rust_bin") { | |
| testonly = true | |
| sources = [ "rust_symbol_test.rs" ] | |
| source_root = "rust_symbol_test.rs" | |
| output_name = "rust_symbol_test" | |
| edition = "2024" | |
| deps = [ "//src/lib/fuchsia" ] | |
| } |