| 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 1082 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1093 "html/HTMLIFrameElementTest.cpp", | 1093 "html/HTMLIFrameElementTest.cpp", |
| 1094 "html/HTMLImageElementTest.cpp", | 1094 "html/HTMLImageElementTest.cpp", |
| 1095 "html/HTMLInputElementTest.cpp", | 1095 "html/HTMLInputElementTest.cpp", |
| 1096 "html/HTMLLinkElementSizesAttributeTest.cpp", | 1096 "html/HTMLLinkElementSizesAttributeTest.cpp", |
| 1097 "html/HTMLOutputElementTest.cpp", | 1097 "html/HTMLOutputElementTest.cpp", |
| 1098 "html/HTMLSelectElementTest.cpp", | 1098 "html/HTMLSelectElementTest.cpp", |
| 1099 "html/HTMLTableRowElementTest.cpp", | 1099 "html/HTMLTableRowElementTest.cpp", |
| 1100 "html/HTMLTextAreaElementTest.cpp", | 1100 "html/HTMLTextAreaElementTest.cpp", |
| 1101 "html/HTMLTextFormControlElementTest.cpp", | 1101 "html/HTMLTextFormControlElementTest.cpp", |
| 1102 "html/HTMLVideoElementTest.cpp", | 1102 "html/HTMLVideoElementTest.cpp", |
| 1103 "html/ImageDocumentTest.cpp", |
| 1103 "html/LinkRelAttributeTest.cpp", | 1104 "html/LinkRelAttributeTest.cpp", |
| 1104 "html/TimeRangesTest.cpp", | 1105 "html/TimeRangesTest.cpp", |
| 1105 "html/canvas/CanvasAsyncBlobCreatorTest.cpp", | 1106 "html/canvas/CanvasAsyncBlobCreatorTest.cpp", |
| 1106 "html/canvas/CanvasFontCacheTest.cpp", | 1107 "html/canvas/CanvasFontCacheTest.cpp", |
| 1107 "html/forms/EmailInputTypeTest.cpp", | 1108 "html/forms/EmailInputTypeTest.cpp", |
| 1108 "html/forms/FileInputTypeTest.cpp", | 1109 "html/forms/FileInputTypeTest.cpp", |
| 1109 "html/forms/OptionListTest.cpp", | 1110 "html/forms/OptionListTest.cpp", |
| 1110 "html/forms/StepRangeTest.cpp", | 1111 "html/forms/StepRangeTest.cpp", |
| 1111 "html/parser/AtomicHTMLTokenTest.cpp", | 1112 "html/parser/AtomicHTMLTokenTest.cpp", |
| 1112 "html/parser/CSSPreloadScannerTest.cpp", | 1113 "html/parser/CSSPreloadScannerTest.cpp", |
| (...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1239 sources = [ | 1240 sources = [ |
| 1240 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1241 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1241 "html/parser/TextResourceDecoderForFuzzing.h", | 1242 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1242 ] | 1243 ] |
| 1243 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1244 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1244 deps = [ | 1245 deps = [ |
| 1245 ":core", | 1246 ":core", |
| 1246 "../platform:blink_fuzzer_test_support", | 1247 "../platform:blink_fuzzer_test_support", |
| 1247 ] | 1248 ] |
| 1248 } | 1249 } |
| OLD | NEW |