blob: 34dbb07eba8fc45ac6bfbfceca2c70ac0b2408b9 [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/go/go_binary.gni")
import("//build/go/go_library.gni")
import("//build/go/toolchain.gni")
go_binary("netfilter") {
gopackage = "netstack/filter/netfilter"
deps = [
":netfilter_lib",
]
}
go_library("netfilter_lib") {
name = "netfilter"
deps = [
"//garnet/go/src/netstack:netstack_lib",
]
}