| 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/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
| 6 import("//build/toolchain/toolchain.gni") | 6 import("//build/toolchain/toolchain.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 1127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1138 "html/HTMLTextFormControlElementTest.cpp", | 1138 "html/HTMLTextFormControlElementTest.cpp", |
| 1139 "html/HTMLVideoElementTest.cpp", | 1139 "html/HTMLVideoElementTest.cpp", |
| 1140 "html/ImageDocumentTest.cpp", | 1140 "html/ImageDocumentTest.cpp", |
| 1141 "html/LinkRelAttributeTest.cpp", | 1141 "html/LinkRelAttributeTest.cpp", |
| 1142 "html/TimeRangesTest.cpp", | 1142 "html/TimeRangesTest.cpp", |
| 1143 "html/canvas/CanvasAsyncBlobCreatorTest.cpp", | 1143 "html/canvas/CanvasAsyncBlobCreatorTest.cpp", |
| 1144 "html/canvas/CanvasFontCacheTest.cpp", | 1144 "html/canvas/CanvasFontCacheTest.cpp", |
| 1145 "html/forms/EmailInputTypeTest.cpp", | 1145 "html/forms/EmailInputTypeTest.cpp", |
| 1146 "html/forms/FileInputTypeTest.cpp", | 1146 "html/forms/FileInputTypeTest.cpp", |
| 1147 "html/forms/OptionListTest.cpp", | 1147 "html/forms/OptionListTest.cpp", |
| 1148 "html/forms/PasswordInputTypeTest.cpp", |
| 1148 "html/forms/StepRangeTest.cpp", | 1149 "html/forms/StepRangeTest.cpp", |
| 1149 "html/parser/AtomicHTMLTokenTest.cpp", | 1150 "html/parser/AtomicHTMLTokenTest.cpp", |
| 1150 "html/parser/CSSPreloadScannerTest.cpp", | 1151 "html/parser/CSSPreloadScannerTest.cpp", |
| 1151 "html/parser/CompactHTMLTokenTest.cpp", | 1152 "html/parser/CompactHTMLTokenTest.cpp", |
| 1152 "html/parser/HTMLDocumentParserTest.cpp", | 1153 "html/parser/HTMLDocumentParserTest.cpp", |
| 1153 "html/parser/HTMLEntityParserTest.cpp", | 1154 "html/parser/HTMLEntityParserTest.cpp", |
| 1154 "html/parser/HTMLParserIdiomsTest.cpp", | 1155 "html/parser/HTMLParserIdiomsTest.cpp", |
| 1155 "html/parser/HTMLParserThreadTest.cpp", | 1156 "html/parser/HTMLParserThreadTest.cpp", |
| 1156 "html/parser/HTMLPreloadScannerTest.cpp", | 1157 "html/parser/HTMLPreloadScannerTest.cpp", |
| 1157 "html/parser/HTMLResourcePreloaderTest.cpp", | 1158 "html/parser/HTMLResourcePreloaderTest.cpp", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1284 sources = [ | 1285 sources = [ |
| 1285 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1286 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1286 "html/parser/TextResourceDecoderForFuzzing.h", | 1287 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1287 ] | 1288 ] |
| 1288 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1289 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1289 deps = [ | 1290 deps = [ |
| 1290 ":core", | 1291 ":core", |
| 1291 "../platform:blink_fuzzer_test_support", | 1292 "../platform:blink_fuzzer_test_support", |
| 1292 ] | 1293 ] |
| 1293 } | 1294 } |
| OLD | NEW |