crosvm/rutabaga_gfx/ffi/Cargo.toml
Gurchetan Singh 3059851cd0 rutabaga_gfx: export rutabaga
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>
2021-11-02 15:53:02 +00:00

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