# Copyright 2023 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/components.gni") | |
import("//build/rust/rustc_library.gni") | |
rustc_library("reverser_crate") { | |
edition = "2021" | |
with_unit_tests = true | |
sources = [ "src/lib.rs" ] | |
} | |
fuchsia_unittest_package("reverser_rust_unittest") { | |
deps = [ ":reverser_crate_test" ] | |
} | |
group("hermetic_tests") { | |
testonly = true | |
deps = [ ":reverser_rust_unittest" ] | |
} |