mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 18:38:01 +00:00
This change adds FFI bindings to the Rutabaga Virtual Graphics Interface (VGI). BUG=b:173630595 TEST= compile cp rutabaga_gfx_ffi.so + rutabaga_gfx.so to sysroot ./rutabaga_test Change-Id: Iba99b0ace9f1ad90b6c42d9075038dd9f05b9367 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3230331 Tested-by: kokoro <noreply+kokoro@google.com> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org> Commit-Queue: Gurchetan Singh <gurchetansingh@chromium.org>
26 lines
621 B
TOML
26 lines
621 B
TOML
[package]
|
|
name = "rutabaga_gfx_ffi"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors + Android Open Source Project"]
|
|
edition = "2018"
|
|
|
|
[lib]
|
|
name = "rutabaga_gfx_ffi"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
rutabaga_gfx = { path = "../" }
|
|
base = {path = "../../common/base" }
|
|
data_model = {path = "../../common/data_model" }
|
|
libc = "0.2.93"
|
|
|
|
[features]
|
|
minigbm = ["rutabaga_gfx/minigbm"]
|
|
gfxstream = ["rutabaga_gfx/gfxstream"]
|
|
virgl_renderer = ["rutabaga_gfx/virgl_renderer"]
|
|
virgl_renderer_next = ["rutabaga_gfx/virgl_renderer_next"]
|
|
vulkano = ["rutabaga_gfx/vulkano"]
|
|
|
|
[profile.dev]
|
|
lto = true
|
|
incremental = false
|