mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2024-11-25 05:03:05 +00:00
781d975d0b
This is the original CL with one minor exception: we don't bind mount the camera socket with the GPU device. That was the prior behavior, and for some reason it really doesn't work with Mali + SECCOMP[1]. It's not really important for the Wayland prototype, so we'll let the camera team figure it out if and when they are so inclined. Bug: b:146066070 Bug: b:173630595 Bug: b:150239451 Bug: b:180126126 TEST=arc.Boot.vm [1] audit(1613339319.226:43): auid=4294967295 uid=603 gid=603 ses=4294967295 subj=u:r:cros_camera_algo:s0 pid=17107 comm="cros_camera_alg" exe="/usr/bin/cros_camera_algo" sig=31 arch=40000028 syscall=54 compat=1 ip=0xe86a70b8 code=0x0 This reverts commit 51e1c4ad3e3a71a263501d2566d3b1ea59ba2070. Change-Id: I74f49ece55656d7a9096900e3f19a528234b4224 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2695550 Commit-Queue: Gurchetan Singh <gurchetansingh@chromium.org> Tested-by: Gurchetan Singh <gurchetansingh@chromium.org> Reviewed-by: Robert Tarasov <tutankhamen@chromium.org>
21 lines
591 B
TOML
21 lines
591 B
TOML
[package]
|
|
name = "rutabaga_gfx"
|
|
version = "0.1.0"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[features]
|
|
gfxstream = []
|
|
virgl_renderer = []
|
|
virgl_renderer_next = []
|
|
minigbm = []
|
|
# To try out Vulkano, delete the following line and uncomment the line in "dependencies". vulkano
|
|
# features are just a prototype and not integrated yet into the ChromeOS build system.
|
|
vulkano = []
|
|
|
|
[dependencies]
|
|
data_model = { path = "../data_model" }
|
|
libc = "*"
|
|
base = { path = "../base" }
|
|
sync = { path = "../sync" }
|
|
#vulkano = {git = "https:/github.com/vulkano-rs/vulkano.git", optional = true}
|