| 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/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//build/split_static_library.gni") | 7 import("//build/split_static_library.gni") |
| 8 import("//testing/libfuzzer/fuzzer_test.gni") | 8 import("//testing/libfuzzer/fuzzer_test.gni") |
| 9 import("//third_party/WebKit/Source/bindings/bindings.gni") | 9 import("//third_party/WebKit/Source/bindings/bindings.gni") |
| 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") | 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") |
| (...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1117 "html/HTMLTextFormControlElementTest.cpp", | 1117 "html/HTMLTextFormControlElementTest.cpp", |
| 1118 "html/HTMLVideoElementTest.cpp", | 1118 "html/HTMLVideoElementTest.cpp", |
| 1119 "html/ImageDocumentTest.cpp", | 1119 "html/ImageDocumentTest.cpp", |
| 1120 "html/LinkRelAttributeTest.cpp", | 1120 "html/LinkRelAttributeTest.cpp", |
| 1121 "html/TimeRangesTest.cpp", | 1121 "html/TimeRangesTest.cpp", |
| 1122 "html/canvas/CanvasAsyncBlobCreatorTest.cpp", | 1122 "html/canvas/CanvasAsyncBlobCreatorTest.cpp", |
| 1123 "html/canvas/CanvasFontCacheTest.cpp", | 1123 "html/canvas/CanvasFontCacheTest.cpp", |
| 1124 "html/forms/EmailInputTypeTest.cpp", | 1124 "html/forms/EmailInputTypeTest.cpp", |
| 1125 "html/forms/FileInputTypeTest.cpp", | 1125 "html/forms/FileInputTypeTest.cpp", |
| 1126 "html/forms/OptionListTest.cpp", | 1126 "html/forms/OptionListTest.cpp", |
| 1127 "html/forms/PasswordInputTypeTest.cpp", |
| 1127 "html/forms/StepRangeTest.cpp", | 1128 "html/forms/StepRangeTest.cpp", |
| 1128 "html/parser/AtomicHTMLTokenTest.cpp", | 1129 "html/parser/AtomicHTMLTokenTest.cpp", |
| 1129 "html/parser/CSSPreloadScannerTest.cpp", | 1130 "html/parser/CSSPreloadScannerTest.cpp", |
| 1130 "html/parser/CompactHTMLTokenTest.cpp", | 1131 "html/parser/CompactHTMLTokenTest.cpp", |
| 1131 "html/parser/HTMLDocumentParserTest.cpp", | 1132 "html/parser/HTMLDocumentParserTest.cpp", |
| 1132 "html/parser/HTMLEntityParserTest.cpp", | 1133 "html/parser/HTMLEntityParserTest.cpp", |
| 1133 "html/parser/HTMLParserIdiomsTest.cpp", | 1134 "html/parser/HTMLParserIdiomsTest.cpp", |
| 1134 "html/parser/HTMLParserThreadTest.cpp", | 1135 "html/parser/HTMLParserThreadTest.cpp", |
| 1135 "html/parser/HTMLPreloadScannerTest.cpp", | 1136 "html/parser/HTMLPreloadScannerTest.cpp", |
| 1136 "html/parser/HTMLResourcePreloaderTest.cpp", | 1137 "html/parser/HTMLResourcePreloaderTest.cpp", |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 sources = [ | 1260 sources = [ |
| 1260 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1261 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1261 "html/parser/TextResourceDecoderForFuzzing.h", | 1262 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1262 ] | 1263 ] |
| 1263 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1264 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1264 deps = [ | 1265 deps = [ |
| 1265 ":core", | 1266 ":core", |
| 1266 "../platform:blink_fuzzer_test_support", | 1267 "../platform:blink_fuzzer_test_support", |
| 1267 ] | 1268 ] |
| 1268 } | 1269 } |
| OLD | NEW |