Add missing dependency on util to fuzzer

This makes it possible to run gn check --deps for crashpad/snapshot in
chromium.

ERROR at //third_party/crashpad/crashpad/snapshot/elf/elf_image_reader_fuzzer.cc:19:11: Can't include this header from here.
#include "util/process/process_memory.h"
          ^----------------------------

Bug: chromium:1159035
Change-Id: Idddcf95da2a349842fa86a8d595216fbca3b8822
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/2676581
Commit-Queue: Mark Mentovai <mark@chromium.org>
Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
Rune Lillesveen 2021-02-04 19:34:27 +01:00 committed by Commit Bot
parent 87515bc2fa
commit 57c336371c

View File

@ -286,6 +286,7 @@ if (crashpad_is_linux) {
deps = [
":snapshot",
"../third_party/mini_chromium:base",
"../util:util",
]
seed_corpus = "elf/elf_image_reader_fuzzer_corpus"
}