blob: 59544114533d6caa1606ed3381094d76f6abf3cb [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_cdylib.gni")
rustc_cdylib("crust-shared") {
output_name = "crust_shared_rust"
sources = [ "src/lib.rs" ]
edition = "2021"
public = [ "crust.h" ]
# Unlike executables, libfdio is not added as an implicit dependency to
# shared libraries, so we have to add it ourselves.
deps = [ "//sdk/lib/fdio:fdio" ]
}