blob: 5324bb0fe2fc269bb471aa6f6a357fa67c103832 [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_neighbor_ext") {
with_unit_tests = true
edition = "2018"
deps = [
"//sdk/fidl/fuchsia.net.neighbor:fuchsia.net.neighbor-rustc",
"//src/lib/network/fidl_fuchsia_net_ext",
"//third_party/rust_crates:chrono",
"//third_party/rust_crates:serde",
]
sources = [ "src/lib.rs" ]
configs -= [ "//build/config/rust:allow_unused_results" ]
}
fuchsia_unittest_package("fidl-fuchsia-net-neighbor-ext-test") {
deps = [ ":fidl_fuchsia_net_neighbor_ext_test" ]
}