blob: 9986e2b21924da0fa4e0d679f77fe5b1400a8eb8 [file] [log] [blame]
# 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 = "2021"
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("directed_graph_tests") {
deps = [ ":directed_graph_test" ]
}
group("tests") {
testonly = true
deps = [ ":directed_graph_tests" ]
}