1# Copyright 2022 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_shared_library.gni") 6 7rust_shared_library("test_rust_shared_library") { 8 allow_unsafe = true 9 sources = [ "src/lib.rs" ] 10 cxx_bindings = [ "src/lib.rs" ] 11 build_native_rust_unit_tests = true 12} 13