| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |