summaryrefslogtreecommitdiffhomepage
path: root/pkg/tcpip/link/ethernet/BUILD
blob: ec92ed6231a01e8e5e546d91eb42b220b9369ff1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
load("//tools:defs.bzl", "go_library")

package(licenses = ["notice"])

go_library(
    name = "ethernet",
    srcs = ["ethernet.go"],
    visibility = ["//visibility:public"],
    deps = [
        "//pkg/tcpip",
        "//pkg/tcpip/header",
        "//pkg/tcpip/link/nested",
        "//pkg/tcpip/stack",
    ],
)