blob: b4b9e198e17b301042d07bd3d09b900b7496eb4e [file] [log] [blame]
# Copyright 2018 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/package.gni")
import("//build/rust/rustc_library.gni")
rustc_library("fidl_fuchsia_net_ext") {
with_unit_tests = true
edition = "2018"
deps = [
"//third_party/rust-crates/rustc_deps:failure",
"//zircon/public/fidl/fuchsia-net:fuchsia-net-rustc",
]
}
package("fidl_fuchsia_net_ext_tests") {
testonly = true
deps = [
":fidl_fuchsia_net_ext",
]
tests = [
{
name = "fidl_fuchsia_net_ext_lib_test"
},
]
}