blob: 26a8d3366c91bfeceabc67c9ee21dea7c4f9b7a1 [file] [log] [blame]
# Copyright 2021 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/host.gni")
import("//build/rust/rustc_library.gni")
if (is_host) {
rustc_library("config") {
name = "scrutiny_config"
with_unit_tests = true
edition = "2021"
deps = [
"//src/lib/fuchsia-url",
"//src/security/scrutiny/utils",
"//third_party/rust_crates:serde",
]
non_rust_deps = [ "//src/lib/chunked-compression" ]
sources = [ "src/lib.rs" ]
}
}
group("tests") {
testonly = true
public_deps = [ ":config_test($host_toolchain)" ]
}