| # 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("//src/developer/ffx/build/ffx_plugin.gni") |
| |
| ffx_plugin("ffx_scrutiny_verify") { |
| sdk_category = "not-yet-specified" |
| version = "0.1.0" |
| edition = "2021" |
| with_unit_tests = true |
| deps = [ |
| "//src/developer/ffx/lib/errors:lib", |
| "//src/developer/ffx/lib/fho:lib", |
| "//src/developer/ffx/lib/writer:lib", |
| "//src/security/lib/scrutiny/frontend", |
| "//src/security/lib/scrutiny/utils", |
| "//src/sys/lib/cm_rust", |
| "//third_party/rust_crates:anyhow", |
| "//third_party/rust_crates:async-trait", |
| "//third_party/rust_crates:serde", |
| "//third_party/rust_crates:serde_json", |
| "//third_party/rust_crates:serde_json5", |
| ] |
| non_rust_deps = [ "//src/lib/chunked-compression" ] |
| test_deps = [ "//third_party/rust_crates:assert_matches" ] |
| |
| args_source_root = "args/lib.rs" |
| args_sources = [ |
| "args/bootfs.rs", |
| "args/component_resolvers.rs", |
| "args/kernel_cmdline.rs", |
| "args/lib.rs", |
| "args/pre_signing.rs", |
| "args/route_sources.rs", |
| "args/routes.rs", |
| "args/static_pkgs.rs", |
| "args/structured_config.rs", |
| ] |
| |
| args_deps = [ |
| "//src/developer/ffx/core:lib", |
| "//src/security/lib/scrutiny/frontend", |
| "//src/sys/lib/cm_rust", |
| "//third_party/rust_crates:argh", |
| ] |
| |
| sources = [ |
| "src/bootfs.rs", |
| "src/component_resolvers.rs", |
| "src/kernel_cmdline.rs", |
| "src/lib.rs", |
| "src/pre_signing.rs", |
| "src/route_sources.rs", |
| "src/routes.rs", |
| "src/static_pkgs.rs", |
| "src/structured_config.rs", |
| ] |
| } |