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

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

Issue 1549793002: port of sqlite3 fuzzer with some updates (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix the nits Created 4 years, 12 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
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("//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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698