From 61724a4ce00810e886fb212f9e4afbaf8bfc0ea1 Mon Sep 17 00:00:00 2001 From: Tiancong Wang Date: Wed, 29 Jul 2020 13:51:50 -0700 Subject: [PATCH] fuzzer: Add vm_memory to fuzzer Cargo After vm_memory was added, the dependency wasn't added. So it caused crosvm-fuzz fail to build. This patch adds the dependency. BUG=chromium:1110970 TEST=USE="asan fuzzer" emerge-amd64-generic crosvm Change-Id: Ic71243365ed8603928ba30bce7b7361ca368bf1c Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/2327870 Reviewed-by: Daniel Verkamp Reviewed-by: Zach Reizner Reviewed-by: Dylan Reid Tested-by: Daniel Verkamp Commit-Queue: Tiancong Wang --- fuzz/Cargo.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/fuzz/Cargo.toml b/fuzz/Cargo.toml index 93c2e034e2..f76c6e7281 100644 --- a/fuzz/Cargo.toml +++ b/fuzz/Cargo.toml @@ -14,6 +14,7 @@ libc = "*" rand = "0.6" sys_util = { path = "../sys_util" } usb_util = { path = "../usb_util" } +vm_memory = { path = "../vm_memory" } # Prevent this from interfering with workspaces [workspace]