blob: 423ab2b6488b1f427edbcd7c091ce1f48b1f5e7f [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_netstack_ext") {
with_unit_tests = true
edition = "2018"
deps = [
"//garnet/lib/rust/fidl_fuchsia_net_ext",
"//garnet/public/fidl/fuchsia.netstack:fuchsia.netstack-rustc",
]
}
package("fidl_fuchsia_netstack_ext_tests") {
testonly = true
deps = [
":fidl_fuchsia_netstack_ext",
]
tests = [
{
name = "fidl_fuchsia_netstack_ext_lib_test"
},
]
}