blob: 5ce93ab99940b5d8c3db997113d7e27e9da35c25 [file] [log] [blame]
# Copyright 2022 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/components/fuchsia_test_component.gni")
import("//build/rust/rustc_binary.gni")
rustc_binary("security_pkg_dns_resolver-binary") {
testonly = true
output_name = "security_pkg_dns_resolver"
edition = "2021"
source_root = "src/main.rs"
sources = [ "src/main.rs" ]
deps = [
"//sdk/fidl/fuchsia.net:fuchsia.net-rustc",
"//sdk/fidl/fuchsia.net.name:fuchsia.net.name-rustc",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/syslog/rust:syslog",
"//src/security/pkg_test/util",
"//third_party/rust_crates:argh",
"//third_party/rust_crates:futures",
]
}
fuchsia_test_component("security_pkg_dns_resolver-component") {
component_name = "security_pkg_dns_resolver"
# Note: Test package must include all files designated by cmdline args in
# component manifest. See cml and source for details. These files are not
# included as explicit deps here because they vary across different
# packagings/configurations of the test.
manifest = "meta/security_pkg_dns_resolver.cml"
deps = [ ":security_pkg_dns_resolver-binary" ]
}