blob: f7fe90e4a2629b634b34ab03e99d4432eb94f043 [file] [log] [blame] [edit]
# Copyright 2025 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/rust/rustc_library.gni")
rustc_library("fidl_ir_util") {
edition = "2021"
sources = [
"src/decl.rs",
"src/lib.rs",
]
deps = [ "//tools/fidl/fidl_ir" ]
with_unit_tests = true
}
group("tests") {
testonly = true
deps = [ ":fidl_ir_util_test($host_toolchain)" ]
}