Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2)

Side by Side Diff: testing/libfuzzer/fuzzers/BUILD.gn

Issue 1558483003: port libxml_xml_read_memory_fuzzer (from kcc's libfuzzer-bot) and disable error messages from the p… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/libxml_xml_read_memory_fuzzer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//testing/libfuzzer/fuzzer_test.gni") 8 import("//testing/libfuzzer/fuzzer_test.gni")
9 9
10 fuzzer_test("empty_fuzzer") { 10 fuzzer_test("empty_fuzzer") {
(...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after
248 } 248 }
249 249
250 fuzzer_test("sqlite3_prepare_v2_fuzzer") { 250 fuzzer_test("sqlite3_prepare_v2_fuzzer") {
251 sources = [ 251 sources = [
252 "sqlite3_prepare_v2_fuzzer.cc", 252 "sqlite3_prepare_v2_fuzzer.cc",
253 ] 253 ]
254 deps = [ 254 deps = [
255 "//third_party/sqlite", 255 "//third_party/sqlite",
256 ] 256 ]
257 } 257 }
258
259 fuzzer_test("libxml_xml_read_memory_fuzzer") {
260 sources = [
261 "libxml_xml_read_memory_fuzzer.cc",
262 ]
263 deps = [
264 "//third_party/libxml:libxml",
265 ]
266 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/libxml_xml_read_memory_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698