blob: aa06b80121108a8761ffe2cd2257d61e4038f207 [file] [edit]
# Copyright 2020 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/rust/rustc_library.gni")
rustc_library("directed_graph") {
with_unit_tests = true
edition = "2024"
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("directed_graph_tests") {
deps = [ ":directed_graph_test" ]
}
group("tests") {
testonly = true
deps = [ ":directed_graph_tests" ]
}