| 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 1108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1119 "html/parser/HTMLResourcePreloaderTest.cpp", | 1119 "html/parser/HTMLResourcePreloaderTest.cpp", |
| 1120 "html/parser/HTMLSrcsetParserTest.cpp", | 1120 "html/parser/HTMLSrcsetParserTest.cpp", |
| 1121 "html/parser/HTMLTokenizerTest.cpp", | 1121 "html/parser/HTMLTokenizerTest.cpp", |
| 1122 "html/parser/HTMLTreeBuilderSimulatorTest.cpp", | 1122 "html/parser/HTMLTreeBuilderSimulatorTest.cpp", |
| 1123 "html/parser/TextResourceDecoderTest.cpp", | 1123 "html/parser/TextResourceDecoderTest.cpp", |
| 1124 "html/shadow/MediaControlsTest.cpp", | 1124 "html/shadow/MediaControlsTest.cpp", |
| 1125 "html/track/TextTrackListTest.cpp", | 1125 "html/track/TextTrackListTest.cpp", |
| 1126 "html/track/vtt/BufferedLineReaderTest.cpp", | 1126 "html/track/vtt/BufferedLineReaderTest.cpp", |
| 1127 "html/track/vtt/VTTScannerTest.cpp", | 1127 "html/track/vtt/VTTScannerTest.cpp", |
| 1128 "input/EventHandlerTest.cpp", | 1128 "input/EventHandlerTest.cpp", |
| 1129 "inspector/InspectorWebPerfAgentTest.cpp", |
| 1129 "inspector/ProtocolParserTest.cpp", | 1130 "inspector/ProtocolParserTest.cpp", |
| 1130 "layout/ImageQualityControllerTest.cpp", | 1131 "layout/ImageQualityControllerTest.cpp", |
| 1131 "layout/InlineTextBoxTest.cpp", | 1132 "layout/InlineTextBoxTest.cpp", |
| 1132 "layout/LayoutBlockTest.cpp", | 1133 "layout/LayoutBlockTest.cpp", |
| 1133 "layout/LayoutBoxModelObjectTest.cpp", | 1134 "layout/LayoutBoxModelObjectTest.cpp", |
| 1134 "layout/LayoutBoxTest.cpp", | 1135 "layout/LayoutBoxTest.cpp", |
| 1135 "layout/LayoutInlineTest.cpp", | 1136 "layout/LayoutInlineTest.cpp", |
| 1136 "layout/LayoutMultiColumnFlowThreadTest.cpp", | 1137 "layout/LayoutMultiColumnFlowThreadTest.cpp", |
| 1137 "layout/LayoutObjectTest.cpp", | 1138 "layout/LayoutObjectTest.cpp", |
| 1138 "layout/LayoutPartTest.cpp", | 1139 "layout/LayoutPartTest.cpp", |
| (...skipping 100 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 |