blob: c49c4728a1b08d1148a5187244e2d43d94cafd8d [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/rust/rustc_library.gni")
rustc_library("gidl_util") {
edition = "2018"
deps = [
"//src/lib/fidl/rust/fidl",
"//src/lib/zircon/rust:fuchsia-zircon-status",
]
if (is_fuchsia) {
deps += [ "//src/lib/zircon/rust:fuchsia-zircon-sys" ]
}
sources = [ "src/lib.rs" ]
}