| 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 | 10 |
| (...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 } |
| OLD | NEW |