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

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

Issue 2497603002: Limit memory usage for sqlite3 fuzzer + move it to sqlite dir. (Closed)
Patch Set: Fix nits. Created 4 years, 1 month 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 | testing/libfuzzer/fuzzers/dicts/generated/sqlite3_prepare_v2_fuzzer.dict » ('j') | 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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 177
178 fuzzer_test("zlib_uncompress_fuzzer") { 178 fuzzer_test("zlib_uncompress_fuzzer") {
179 sources = [ 179 sources = [
180 "zlib_uncompress_fuzzer.cc", 180 "zlib_uncompress_fuzzer.cc",
181 ] 181 ]
182 deps = [ 182 deps = [
183 "//third_party/zlib", 183 "//third_party/zlib",
184 ] 184 ]
185 } 185 }
186 186
187 fuzzer_test("sqlite3_prepare_v2_fuzzer") {
188 sources = [
189 "sqlite3_prepare_v2_fuzzer.cc",
190 ]
191 deps = [
192 "//third_party/sqlite",
193 ]
194 dict = "dicts/generated/sqlite3_prepare_v2_fuzzer.dict"
195 }
196
197 fuzzer_test("libxml_xml_read_memory_fuzzer") { 187 fuzzer_test("libxml_xml_read_memory_fuzzer") {
198 sources = [ 188 sources = [
199 "libxml_xml_read_memory_fuzzer.cc", 189 "libxml_xml_read_memory_fuzzer.cc",
200 ] 190 ]
201 deps = [ 191 deps = [
202 "//third_party/libxml:libxml", 192 "//third_party/libxml:libxml",
203 ] 193 ]
204 dict = "dicts/generated/libxml_xml_read_memory_fuzzer.dict" 194 dict = "dicts/generated/libxml_xml_read_memory_fuzzer.dict"
205 } 195 }
206 196
(...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 } 428 }
439 429
440 fuzzer_test("hash_fuzzer") { 430 fuzzer_test("hash_fuzzer") {
441 sources = [ 431 sources = [
442 "hash_fuzzer.cc", 432 "hash_fuzzer.cc",
443 ] 433 ]
444 deps = [ 434 deps = [
445 "//base", 435 "//base",
446 ] 436 ]
447 } 437 }
OLDNEW
« no previous file with comments | « no previous file | testing/libfuzzer/fuzzers/dicts/generated/sqlite3_prepare_v2_fuzzer.dict » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698