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 |
11 group("fuzzers") { | 11 group("fuzzers") { |
12 } | 12 } |
13 | 13 |
14 fuzzer_test("pdf_codec_fax_fuzzer") { | |
Lei Zhang
2016/09/20 17:53:46
Can you move this down to after pdfium_fuzzer, to
kcwu
2016/09/20 18:00:49
Done.
| |
15 sources = [] | |
16 deps = [ | |
17 "//third_party/pdfium/testing/libfuzzer:pdf_codec_fax_fuzzer", | |
18 ] | |
19 } | |
20 | |
14 fuzzer_test("pdfium_fuzzer") { | 21 fuzzer_test("pdfium_fuzzer") { |
15 sources = [ | 22 sources = [ |
16 "pdfium_fuzzer.cc", | 23 "pdfium_fuzzer.cc", |
17 ] | 24 ] |
18 deps = [ | 25 deps = [ |
19 "//third_party/pdfium", | 26 "//third_party/pdfium", |
20 "//third_party/pdfium:test_support", | 27 "//third_party/pdfium:test_support", |
21 "//v8", | 28 "//v8", |
22 "//v8:v8_libplatform", | 29 "//v8:v8_libplatform", |
23 ] | 30 ] |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
127 } | 134 } |
128 | 135 |
129 fuzzer_test("pdf_cfx_saxreader_fuzzer") { | 136 fuzzer_test("pdf_cfx_saxreader_fuzzer") { |
130 sources = [] | 137 sources = [] |
131 deps = [ | 138 deps = [ |
132 "//third_party/pdfium/testing/libfuzzer:pdf_cfx_saxreader_fuzzer", | 139 "//third_party/pdfium/testing/libfuzzer:pdf_cfx_saxreader_fuzzer", |
133 ] | 140 ] |
134 dict = "dicts/pdf_xml.dict" | 141 dict = "dicts/pdf_xml.dict" |
135 } | 142 } |
136 } | 143 } |
OLD | NEW |