mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-06 02:25:23 +00:00
5f46e21c02
The crate requires special compilation flags that conflict with the workspace flags. We may want to consider moving it to common/ so the test runner can compile it in a separate workspace. This brings us one step closer to be able to run `cargo build --workspace` with no excludes. BUG=b:206689789 TEST=./tools/presubmit Change-Id: Ice747ced00f81db0a8e05ff2bc43d4d0e323e456 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3453050 Reviewed-by: Daniel Verkamp <dverkamp@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Dennis Kempin <denniskempin@google.com>
28 lines
634 B
TOML
28 lines
634 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
|
|
|
|
[workspace]
|