blob: 04467262a8c90fc8823cf476ed251f4058f00451 [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") {
with_unit_tests = true
deps = [
"//garnet/public/lib/fidl/rust/fidl",
"//garnet/public/lib/device_settings/fidl:fidl-rustc",
"//garnet/public/lib/netstack/fidl:fidl-rustc",
"//garnet/public/rust/crates/fuchsia-app",
"//garnet/public/rust/crates/fuchsia-async",
"//garnet/public/rust/crates/fuchsia-zircon",
"//third_party/rust-crates/rustc_deps:failure",
"//third_party/rust-crates/rustc_deps:futures",
"//third_party/rust-crates/rustc_deps:serde",
"//third_party/rust-crates/rustc_deps:serde_derive",
"//third_party/rust-crates/rustc_deps:serde_json",
]
name = "netcfg"
}
package("netcfg") {
deps = [
":bin",
]
binary = "rust_crates/netcfg"
meta = [
{
path = rebase_path("meta/netcfg.cmx")
dest = "netcfg.cmx"
},
]
resources = [
{
path = rebase_path("config/default.json")
dest = "default.json"
},
]
}
package("config") {
deprecated_system_image = true
package_name = "netcfg_config"
resources = [
{
dest = "sysmgr/netcfg.config"
path = rebase_path("netcfg.config")
},
]
}