| 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/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 test("brotli_fuzzer") { | 10 test("brotli_fuzzer") { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "//net", | 157 "//net", |
| 158 "//testing/libfuzzer:libfuzzer_main", | 158 "//testing/libfuzzer:libfuzzer_main", |
| 159 ] | 159 ] |
| 160 } | 160 } |
| 161 | 161 |
| 162 test("url_parse_fuzzer") { | 162 test("url_parse_fuzzer") { |
| 163 sources = [ | 163 sources = [ |
| 164 "url_parse_fuzzer.cc", | 164 "url_parse_fuzzer.cc", |
| 165 ] | 165 ] |
| 166 deps = [ | 166 deps = [ |
| 167 "//base:i18n", |
| 167 "//testing/libfuzzer:libfuzzer_main", | 168 "//testing/libfuzzer:libfuzzer_main", |
| 168 "//url:url", | 169 "//url:url", |
| 169 ] | 170 ] |
| 170 } | 171 } |
| 171 | 172 |
| 172 test("vp9_parser_fuzzer") { | 173 test("vp9_parser_fuzzer") { |
| 173 sources = [ | 174 sources = [ |
| 174 "vp9_parser_fuzzer.cc", | 175 "vp9_parser_fuzzer.cc", |
| 175 ] | 176 ] |
| 176 deps = [ | 177 deps = [ |
| 177 "//media", | 178 "//media", |
| 178 "//testing/libfuzzer:libfuzzer_main", | 179 "//testing/libfuzzer:libfuzzer_main", |
| 179 ] | 180 ] |
| 180 } | 181 } |
| 181 | 182 |
| 182 test("v8_json_parser_fuzzer") { | 183 test("v8_json_parser_fuzzer") { |
| 183 sources = [ | 184 sources = [ |
| 184 "v8_json_parser_fuzzer.cc", | 185 "v8_json_parser_fuzzer.cc", |
| 185 ] | 186 ] |
| 186 deps = [ | 187 deps = [ |
| 187 "//testing/libfuzzer:libfuzzer_main", | 188 "//testing/libfuzzer:libfuzzer_main", |
| 188 "//v8", | 189 "//v8", |
| 189 "//v8:v8_libplatform", | 190 "//v8:v8_libplatform", |
| 190 ] | 191 ] |
| 191 data = [ | 192 data = [ |
| 192 "$root_out_dir/natives_blob.bin", | 193 "$root_out_dir/natives_blob.bin", |
| 193 "$root_out_dir/snapshot_blob.bin", | 194 "$root_out_dir/snapshot_blob.bin", |
| 194 ] | 195 ] |
| 195 } | 196 } |
| OLD | NEW |