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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 | 136 |
137 fuzzer_test("usrsctp_fuzzer") { | 137 fuzzer_test("usrsctp_fuzzer") { |
138 sources = [ | 138 sources = [ |
139 "usrsctp_fuzzer.cc", | 139 "usrsctp_fuzzer.cc", |
140 ] | 140 ] |
141 deps = [ | 141 deps = [ |
142 "//third_party/usrsctp", | 142 "//third_party/usrsctp", |
143 ] | 143 ] |
144 } | 144 } |
145 | 145 |
| 146 fuzzer_test("libsrtp_fuzzer") { |
| 147 sources = [ |
| 148 "libsrtp_fuzzer.cc", |
| 149 ] |
| 150 deps = [ |
| 151 "//third_party/libsrtp", |
| 152 ] |
| 153 libfuzzer_options = [ "max_len=1000" ] |
| 154 } |
| 155 |
146 fuzzer_test("base_json_reader_fuzzer") { | 156 fuzzer_test("base_json_reader_fuzzer") { |
147 sources = [ | 157 sources = [ |
148 "base_json_reader_fuzzer.cc", | 158 "base_json_reader_fuzzer.cc", |
149 ] | 159 ] |
150 deps = [ | 160 deps = [ |
151 "//base", | 161 "//base", |
152 ] | 162 ] |
153 } | 163 } |
154 | 164 |
155 fuzzer_test("gfx_png_image_fuzzer") { | 165 fuzzer_test("gfx_png_image_fuzzer") { |
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 fuzzer_test("icu_break_iterator_utf32_fuzzer") { | 326 fuzzer_test("icu_break_iterator_utf32_fuzzer") { |
317 sources = [ | 327 sources = [ |
318 "icu_break_iterator_utf32_fuzzer.cc", | 328 "icu_break_iterator_utf32_fuzzer.cc", |
319 ] | 329 ] |
320 deps = [ | 330 deps = [ |
321 "//base", | 331 "//base", |
322 "//base:i18n", | 332 "//base:i18n", |
323 "//third_party/icu", | 333 "//third_party/icu", |
324 ] | 334 ] |
325 } | 335 } |
OLD | NEW |