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

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

Issue 2341313002: fuzzers: add a fuzzer for the ANGLE shader translator (Closed)
Patch Set: rebase Created 4 years, 3 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 fuzzer_test("prtime_fuzzer") { 404 fuzzer_test("prtime_fuzzer") {
405 sources = [ 405 sources = [
406 "prtime_fuzzer.cc", 406 "prtime_fuzzer.cc",
407 ] 407 ]
408 deps = [ 408 deps = [
409 "//base", 409 "//base",
410 ] 410 ]
411 dict = "dicts/prtime.dict" 411 dict = "dicts/prtime.dict"
412 libfuzzer_options = [ "max_len=1024" ] 412 libfuzzer_options = [ "max_len=1024" ]
413 } 413 }
414
415 fuzzer_test("angle_translator_fuzzer") {
416 sources = []
417 deps = [
418 "//third_party/angle:translator_fuzzer",
419 ]
420 libfuzzer_options = [ "max_len=1000" ]
421 }
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