| # 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/components.gni") |
| import("//build/config/fuchsia/target_api_level.gni") |
| import("//build/rust/rustc_library.gni") |
| |
| rustc_library("cm_graph") { |
| with_unit_tests = true |
| edition = "2024" |
| deps = [ |
| "//sdk/fidl/fuchsia.component.decl:fuchsia.component.decl_rust", |
| "//src/lib/directed_graph", |
| "//third_party/rust_crates:flyweights", |
| ] |
| |
| sources = [ "src/lib.rs" ] |
| } |