Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 # Individual libfuzzer tests that didn't find their home yet. | 5 # Individual libfuzzer tests that didn't find their home yet. |
| 6 | 6 |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 import("//third_party/pdfium/pdfium.gni") | 10 import("//third_party/pdfium/pdfium.gni") |
| (...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 316 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { | 316 fuzzer_test("libxml_xml_regexp_compile_fuzzer") { |
| 317 sources = [ | 317 sources = [ |
| 318 "libxml_xml_regexp_compile_fuzzer.cc", | 318 "libxml_xml_regexp_compile_fuzzer.cc", |
| 319 ] | 319 ] |
| 320 deps = [ | 320 deps = [ |
| 321 "//third_party/libxml", | 321 "//third_party/libxml", |
| 322 ] | 322 ] |
| 323 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" | 323 libfuzzer_options = "libxml_xml_regexp_compile_fuzzer.options" |
| 324 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] | 324 additional_configs = [ "//testing/libfuzzer:no_clusterfuzz" ] |
| 325 } | 325 } |
| 326 | |
| 327 fuzzer_test("third_party_ft_new_memory_face_fuzzer") { | |
| 328 sources = [ | |
| 329 "ft_new_memory_face_fuzzer.cc", | |
| 330 ] | |
| 331 deps = [ | |
| 332 "//third_party/freetype2", | |
|
bungeman-chromium
2016/03/09 18:34:35
While this is the freetype we run the tests with,
bungeman-chromium
2016/03/09 18:49:26
Just wanted to point out that running this against
| |
| 333 ] | |
| 334 } | |
| OLD | NEW |