blob: f8668073b90a37f4c0975800da5f51cc439d4326 [file] [log] [blame]
# Copyright 2021 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/go/go_library.gni")
import("//build/go/go_test.gni")
import("//src/connectivity/network/netstack/gentool/generated.gni")
generated_go("entries_gen_test/entries") {
definitions = [
{
src = "test_entries.json"
template = "gen/entries.tmpl"
},
]
}
go_library("fifo_gen") {
name =
"go.fuchsia.dev/fuchsia/src/connectivity/network/netstack/link/fifo/gen"
source_dir = "gen"
sources = [ "fifo_entry.go" ]
}
go_library("fifo") {
name = "go.fuchsia.dev/fuchsia/src/connectivity/network/netstack/link/fifo"
deps = [
":fifo_gen",
"//third_party/golibs:go.uber.org/multierr",
"//third_party/golibs:gvisor.dev/gvisor",
]
sources = [
"entries_test.go",
"mapped_vmo.go",
"stats.go",
]
}
go_test("link_fifo_test") {
gopackages =
[ "go.fuchsia.dev/fuchsia/src/connectivity/network/netstack/link/fifo" ]
deps = [
":entries_gen_test/entries",
":fifo",
]
}
fuchsia_unittest_package("netstack-link-fifo-gotests") {
deps = [ ":link_fifo_test" ]
}
group("tests") {
testonly = true
deps = [ ":netstack-link-fifo-gotests" ]
}