diff options
-rw-r--r-- | testing/libfuzzer/BUILD.gn | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testing/libfuzzer/BUILD.gn b/testing/libfuzzer/BUILD.gn index aeceb259cd..912c537835 100644 --- a/testing/libfuzzer/BUILD.gn +++ b/testing/libfuzzer/BUILD.gn @@ -100,6 +100,9 @@ if (pdf_enable_xfa) { "pdf_codec_bmp_fuzzer.cc", "xfa_codec_fuzzer.h", ] + deps = [ + "../../:test_support", + ] } } @@ -109,6 +112,9 @@ if (pdf_enable_xfa) { "pdf_codec_gif_fuzzer.cc", "xfa_codec_fuzzer.h", ] + deps = [ + "../../:test_support", + ] } pdfium_fuzzer("pdf_lzw_fuzzer") { @@ -123,6 +129,9 @@ if (pdf_enable_xfa) { "pdf_codec_jpeg_fuzzer.cc", "xfa_codec_fuzzer.h", ] + deps = [ + "../../:test_support", + ] } if (pdf_enable_xfa_png) { @@ -131,6 +140,9 @@ if (pdf_enable_xfa) { "pdf_codec_png_fuzzer.cc", "xfa_codec_fuzzer.h", ] + deps = [ + "../../:test_support", + ] } } @@ -140,6 +152,9 @@ if (pdf_enable_xfa) { "pdf_codec_tiff_fuzzer.cc", "xfa_codec_fuzzer.h", ] + deps = [ + "../../:test_support", + ] } } |