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

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

Issue 2872533002: [clusterfuzz][wasm] Use a new corpus directory (Closed)
Patch Set: Created 3 years, 7 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 | no next file » | 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("//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 10
(...skipping 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 ] 278 ]
279 libfuzzer_options = [ "max_len=500" ] 279 libfuzzer_options = [ "max_len=500" ]
280 } 280 }
281 281
282 fuzzer_test("v8_wasm_fuzzer") { 282 fuzzer_test("v8_wasm_fuzzer") {
283 sources = [] 283 sources = []
284 deps = [ 284 deps = [
285 "//v8:wasm_fuzzer", 285 "//v8:wasm_fuzzer",
286 ] 286 ]
287 dict = "dicts/v8_wasm.dict" 287 dict = "dicts/v8_wasm.dict"
288 seed_corpus = "//v8/test/fuzzer/wasm/" 288 seed_corpus = "//v8/test/fuzzer/wasm_corpus/"
289 libfuzzer_options = [ "max_len=500" ] 289 libfuzzer_options = [ "max_len=500" ]
290 } 290 }
291 291
292 fuzzer_test("v8_wasm_asmjs_fuzzer") { 292 fuzzer_test("v8_wasm_asmjs_fuzzer") {
293 sources = [] 293 sources = []
294 deps = [ 294 deps = [
295 "//v8:wasm_asmjs_fuzzer", 295 "//v8:wasm_asmjs_fuzzer",
296 ] 296 ]
297 dict = "dicts/v8_wasm.dict" 297 dict = "dicts/v8_wasm.dict"
298 seed_corpus = "//v8/test/fuzzer/wasm_asmjs/" 298 seed_corpus = "//v8/test/fuzzer/wasm_asmjs_corpus/"
299 libfuzzer_options = [ "max_len=500" ] 299 libfuzzer_options = [ "max_len=500" ]
300 } 300 }
301 301
302 fuzzer_test("v8_wasm_data_section_fuzzer") { 302 fuzzer_test("v8_wasm_data_section_fuzzer") {
303 sources = [] 303 sources = []
304 deps = [ 304 deps = [
305 "//v8:wasm_data_section_fuzzer", 305 "//v8:wasm_data_section_fuzzer",
306 ] 306 ]
307 libfuzzer_options = [ "max_len=500" ] 307 libfuzzer_options = [ "max_len=500" ]
308 } 308 }
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
453 } 453 }
454 454
455 fuzzer_test("hash_fuzzer") { 455 fuzzer_test("hash_fuzzer") {
456 sources = [ 456 sources = [
457 "hash_fuzzer.cc", 457 "hash_fuzzer.cc",
458 ] 458 ]
459 deps = [ 459 deps = [
460 "//base", 460 "//base",
461 ] 461 ]
462 } 462 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698