OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 # PDFium fuzzers. | 5 # PDFium fuzzers. |
6 | 6 |
7 import("//third_party/pdfium/pdfium.gni") | 7 import("//third_party/pdfium/pdfium.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 } | 43 } |
44 | 44 |
45 fuzzer_test("pdf_codec_icc_fuzzer") { | 45 fuzzer_test("pdf_codec_icc_fuzzer") { |
46 sources = [] | 46 sources = [] |
47 deps = [ | 47 deps = [ |
48 "//third_party/pdfium/testing/libfuzzer:pdf_codec_icc_fuzzer", | 48 "//third_party/pdfium/testing/libfuzzer:pdf_codec_icc_fuzzer", |
49 ] | 49 ] |
50 dict = "dicts/pdf_codec_icc.dict" | 50 dict = "dicts/pdf_codec_icc.dict" |
51 } | 51 } |
52 | 52 |
| 53 fuzzer_test("pdf_codec_jbig2_fuzzer") { |
| 54 sources = [] |
| 55 deps = [ |
| 56 "//third_party/pdfium/testing/libfuzzer:pdf_codec_jbig2_fuzzer", |
| 57 ] |
| 58 } |
| 59 |
53 fuzzer_test("pdf_hint_table_fuzzer") { | 60 fuzzer_test("pdf_hint_table_fuzzer") { |
54 sources = [] | 61 sources = [] |
55 deps = [ | 62 deps = [ |
56 "//third_party/pdfium/testing/libfuzzer:pdf_hint_table_fuzzer", | 63 "//third_party/pdfium/testing/libfuzzer:pdf_hint_table_fuzzer", |
57 ] | 64 ] |
58 } | 65 } |
59 | 66 |
60 fuzzer_test("pdf_jpx_fuzzer") { | 67 fuzzer_test("pdf_jpx_fuzzer") { |
61 sources = [] | 68 sources = [] |
62 deps = [ | 69 deps = [ |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 } | 156 } |
150 | 157 |
151 fuzzer_test("pdf_cfx_saxreader_fuzzer") { | 158 fuzzer_test("pdf_cfx_saxreader_fuzzer") { |
152 sources = [] | 159 sources = [] |
153 deps = [ | 160 deps = [ |
154 "//third_party/pdfium/testing/libfuzzer:pdf_cfx_saxreader_fuzzer", | 161 "//third_party/pdfium/testing/libfuzzer:pdf_cfx_saxreader_fuzzer", |
155 ] | 162 ] |
156 dict = "dicts/pdf_xml.dict" | 163 dict = "dicts/pdf_xml.dict" |
157 } | 164 } |
158 } | 165 } |
OLD | NEW |