| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/chromecast_build.gni") | 6 import("//build/config/chromecast_build.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/split_static_library.gni") | 8 import("//build/split_static_library.gni") |
| 9 import("//testing/libfuzzer/fuzzer_test.gni") | 9 import("//testing/libfuzzer/fuzzer_test.gni") |
| 10 import("//third_party/WebKit/Source/bindings/bindings.gni") | 10 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| (...skipping 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1119 # Fuzzer for blink::TextResourceDecoder. | 1119 # Fuzzer for blink::TextResourceDecoder. |
| 1120 fuzzer_test("text_resource_decoder_fuzzer") { | 1120 fuzzer_test("text_resource_decoder_fuzzer") { |
| 1121 sources = [ | 1121 sources = [ |
| 1122 "html/parser/TextResourceDecoderFuzzer.cpp", | 1122 "html/parser/TextResourceDecoderFuzzer.cpp", |
| 1123 ] | 1123 ] |
| 1124 deps = [ | 1124 deps = [ |
| 1125 ":core", | 1125 ":core", |
| 1126 "../platform:test_support", | 1126 "../platform:test_support", |
| 1127 ] | 1127 ] |
| 1128 } | 1128 } |
| 1129 |
| 1130 # Fuzzer for blink::HTMLPreloadScanner. |
| 1131 fuzzer_test("html_preload_scanner_fuzzer") { |
| 1132 sources = [ |
| 1133 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1134 ] |
| 1135 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1136 deps = [ |
| 1137 ":core", |
| 1138 "../platform:test_support", |
| 1139 "../web:test_support", |
| 1140 ] |
| 1141 } |
| OLD | NEW |