blob: 1d3a93cde8cfe04ad083709532fda5faab59c8f6 [file] [log] [blame]
# Copyright 2019 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/package.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("mock_device_settings") {
name = "mock_device_settings"
edition = "2018"
with_unit_tests = true
deps = [
"//garnet/lib/rust/fidl_fuchsia_net_ext",
"//garnet/lib/rust/fidl_fuchsia_netstack_ext",
"//sdk/fidl/fuchsia.devicesettings:fuchsia.devicesettings-rustc",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/syslog/rust:syslog",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:structopt",
"//third_party/rust_crates:thiserror",
]
}