blob: 80d79d7413c797fb4c276cc230734b03c326afe2 [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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("by_addr") {
version = "0.1.0"
edition = "2021"
with_unit_tests = true
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("by_addr_tests") {
deps = [ ":by_addr_test" ]
}
group("tests") {
testonly = true
deps = [ ":by_addr_tests" ]
}