mirror of
https://chromium.googlesource.com/crosvm/crosvm
synced 2025-02-05 18:20:34 +00:00
Use the crates.io implementation of tempfile instead of our own version. Our reimplementation is kept in the tree for now in case of dependencies outside of the crosvm tree; it can be removed later once those are fully switched over to the crates.io implementation. BUG=b:199204746 TEST=emerge-hatch crosvm Change-Id: I07d3404239302ab9a17f4ddc82a9479b256e4eb4 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/3209839 Reviewed-by: Dennis Kempin <denniskempin@google.com> Reviewed-by: Chirantan Ekbote <chirantan@chromium.org> Tested-by: kokoro <noreply+kokoro@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org>
44 lines
866 B
TOML
44 lines
866 B
TOML
[package]
|
|
name = "crosvm-fuzz"
|
|
version = "0.0.1"
|
|
authors = ["The Chromium OS Authors"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
cros_fuzz = "*"
|
|
data_model = { path = "../data_model" }
|
|
devices = { path = "../devices" }
|
|
disk = { path = "../disk" }
|
|
fuse = { path = "../fuse" }
|
|
kernel_loader = { path = "../kernel_loader" }
|
|
libc = "*"
|
|
rand = "0.6"
|
|
base = { path = "../base" }
|
|
tempfile = "3"
|
|
usb_util = { path = "../usb_util" }
|
|
vm_memory = { path = "../vm_memory" }
|
|
|
|
[[bin]]
|
|
name = "crosvm_block_fuzzer"
|
|
path = "block_fuzzer.rs"
|
|
|
|
[[bin]]
|
|
name = "crosvm_fs_server_fuzzer"
|
|
path = "fs_server_fuzzer.rs"
|
|
|
|
[[bin]]
|
|
name = "crosvm_qcow_fuzzer"
|
|
path = "qcow_fuzzer.rs"
|
|
|
|
[[bin]]
|
|
name = "crosvm_usb_descriptor_fuzzer"
|
|
path = "usb_descriptor_fuzzer.rs"
|
|
|
|
[[bin]]
|
|
name = "crosvm_virtqueue_fuzzer"
|
|
path = "virtqueue_fuzzer.rs"
|
|
|
|
[[bin]]
|
|
name = "crosvm_zimage_fuzzer"
|
|
path = "zimage_fuzzer.rs"
|
|
|