summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Zern <jzern@google.com>2021-01-29 20:04:08 -0800
committerJames Zern <jzern@google.com>2021-01-29 20:04:08 -0800
commitcc3577e9b9a49aaf9c649523290da784f43f4eae (patch)
tree3fff7548f6432a0bbf4acfeb31c3af2bb38fcf7b
parent004d77ffaba9432c113f2b09c06655cb8021a144 (diff)
downloadlibwebp-cc3577e9b9a49aaf9c649523290da784f43f4eae.tar.gz
fuzzer/*: use src/ based include paths
this synchronizes the code with chrome, where this format allows the code to pass buildtools/checkdeps/checkdeps.py Bug: 1141126 Change-Id: I25361b1a43cd95730814302f02aa16af8fdb5fd2
-rw-r--r--tests/fuzzer/animencoder_fuzzer.cc4
-rw-r--r--tests/fuzzer/enc_dec_fuzzer.cc4
-rw-r--r--tests/fuzzer/fuzz_utils.h4
3 files changed, 6 insertions, 6 deletions
diff --git a/tests/fuzzer/animencoder_fuzzer.cc b/tests/fuzzer/animencoder_fuzzer.cc
index b5b1493c..1bd7871c 100644
--- a/tests/fuzzer/animencoder_fuzzer.cc
+++ b/tests/fuzzer/animencoder_fuzzer.cc
@@ -18,8 +18,8 @@
#include <stdlib.h>
#include "./fuzz_utils.h"
-#include "webp/encode.h"
-#include "webp/mux.h"
+#include "src/webp/encode.h"
+#include "src/webp/mux.h"
namespace {
diff --git a/tests/fuzzer/enc_dec_fuzzer.cc b/tests/fuzzer/enc_dec_fuzzer.cc
index 9c1530e7..187b5162 100644
--- a/tests/fuzzer/enc_dec_fuzzer.cc
+++ b/tests/fuzzer/enc_dec_fuzzer.cc
@@ -18,8 +18,8 @@
#include <stdlib.h>
#include "./fuzz_utils.h"
-#include "webp/decode.h"
-#include "webp/encode.h"
+#include "src/webp/decode.h"
+#include "src/webp/encode.h"
namespace {
diff --git a/tests/fuzzer/fuzz_utils.h b/tests/fuzzer/fuzz_utils.h
index 1d746116..713a5f40 100644
--- a/tests/fuzzer/fuzz_utils.h
+++ b/tests/fuzzer/fuzz_utils.h
@@ -23,8 +23,8 @@
#include "./img_alpha.h"
#include "./img_grid.h"
#include "./img_peak.h"
-#include "dsp/dsp.h"
-#include "webp/encode.h"
+#include "src/dsp/dsp.h"
+#include "src/webp/encode.h"
//------------------------------------------------------------------------------
// Arbitrary limits to prevent OOM, timeout, or slow execution.