blob: 046986f7250a91b926aaa46102a9d49e4e92638d [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/rust/rustc_binary.gni")
import("//build/package.gni")
rustc_binary("bin") {
name = "dhcpd_test_client"
edition = "2018"
deps = [
"//garnet/lib/rust/dhcp",
"//garnet/public/rust/fuchsia-async",
"//third_party/rust-crates/rustc_deps:failure",
]
}
package("dhcpd_test_client") {
deps = [
":bin",
]
binary = "rust_crates/dhcpd_test_client"
}