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

Side by Side Diff: content/test/fuzzer/BUILD.gn

Issue 2333733002: Add a fuzzer test for the Clear-Site-Data header. (Closed)
Patch Set: Addressed comments. Created 4 years, 3 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 2016 The Chromium Authors. All rights reserved. 1 # Copyright 2016 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 # Fuzzers for content/ components. 5 # Fuzzers for content/ components.
6 6
7 import("//testing/libfuzzer/fuzzer_test.gni") 7 import("//testing/libfuzzer/fuzzer_test.gni")
8 8
9 # Empty group for package discovery. 9 # Empty group for package discovery.
10 group("fuzzer") { 10 group("fuzzer") {
(...skipping 25 matching lines...) Expand all
36 } 36 }
37 37
38 fuzzer_test("renderer_tree_fuzzer") { 38 fuzzer_test("renderer_tree_fuzzer") {
39 sources = [ 39 sources = [
40 "renderer_tree_fuzzer.cc", 40 "renderer_tree_fuzzer.cc",
41 ] 41 ]
42 deps = [ 42 deps = [
43 ":fuzzer_support", 43 ":fuzzer_support",
44 ] 44 ]
45 } 45 }
46
47 fuzzer_test("clear_site_data_fuzzer") {
48 sources = [
49 "clear_site_data_fuzzer.cc",
50 ]
51 deps = [
52 ":fuzzer_support",
53 "//base",
54 "//content/browser:for_content_tests",
55 ]
56 seed_corpus = "//content/test/data/fuzzer_corpus/clear_site_data/"
57 }
46 } 58 }
OLDNEW
« no previous file with comments | « content/test/data/fuzzer_corpus/clear_site_data/unknown.txt ('k') | content/test/fuzzer/clear_site_data_fuzzer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698