| 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("//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 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 239 | 239 |
| 240 fuzzer_test("quic_crypto_framer_parse_message_fuzzer") { | 240 fuzzer_test("quic_crypto_framer_parse_message_fuzzer") { |
| 241 sources = [ | 241 sources = [ |
| 242 "quic_crypto_framer_parse_message_fuzzer.cc", | 242 "quic_crypto_framer_parse_message_fuzzer.cc", |
| 243 ] | 243 ] |
| 244 deps = [ | 244 deps = [ |
| 245 "//base", | 245 "//base", |
| 246 "//net", | 246 "//net", |
| 247 ] | 247 ] |
| 248 } | 248 } |
| 249 |
| 250 fuzzer_test("sqlite3_prepare_v2_fuzzer") { |
| 251 sources = [ |
| 252 "sqlite3_prepare_v2_fuzzer.cc", |
| 253 ] |
| 254 deps = [ |
| 255 "//third_party/sqlite", |
| 256 ] |
| 257 } |
| OLD | NEW |