1# Copyright 2025 The Chromium Authors 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("//build/rust/rust_executable.gni") 6 7rust_executable("test_rust_exe_2") { 8 crate_root = "main.rs" 9 sources = [ "main.rs" ] 10 deps = [ "//build/rust/tests/test_proc_macro_crate_2:test_proc_macro_crate" ] 11 build_native_rust_unit_tests = true 12} 13