blob: 57f5c62ab3e374d1a2525cb268d95f77eb7628a4 [file] [log] [blame]
# Copyright 2020 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("fidl_fuchsia_net_name_ext") {
with_unit_tests = true
edition = "2021"
deps = [ "//sdk/fidl/fuchsia.net.name:fuchsia.net.name_rust" ]
sources = [ "src/lib.rs" ]
configs -= [ "//build/config/rust/lints:allow_unused_results" ]
}
fuchsia_unittest_package("fidl-fuchsia-net-name-ext-tests") {
deps = [ ":fidl_fuchsia_net_name_ext_test" ]
}