| 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 1201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 "origin_trials/OriginTrialContextTest.cpp", | 1212 "origin_trials/OriginTrialContextTest.cpp", |
| 1213 "page/ChromeClientTest.cpp", | 1213 "page/ChromeClientTest.cpp", |
| 1214 "page/ContextMenuControllerTest.cpp", | 1214 "page/ContextMenuControllerTest.cpp", |
| 1215 "page/FocusControllerTest.cpp", | 1215 "page/FocusControllerTest.cpp", |
| 1216 "page/NetworkStateNotifierTest.cpp", | 1216 "page/NetworkStateNotifierTest.cpp", |
| 1217 "page/PagePopupClientTest.cpp", | 1217 "page/PagePopupClientTest.cpp", |
| 1218 "page/PrintContextTest.cpp", | 1218 "page/PrintContextTest.cpp", |
| 1219 "page/WindowFeaturesTest.cpp", | 1219 "page/WindowFeaturesTest.cpp", |
| 1220 "page/scrolling/ScrollStateTest.cpp", | 1220 "page/scrolling/ScrollStateTest.cpp", |
| 1221 "page/scrolling/SnapCoordinatorTest.cpp", | 1221 "page/scrolling/SnapCoordinatorTest.cpp", |
| 1222 "paint/BoxPaintInvalidatorTest.cpp", |
| 1222 "paint/FirstMeaningfulPaintDetectorTest.cpp", | 1223 "paint/FirstMeaningfulPaintDetectorTest.cpp", |
| 1223 "paint/HTMLCanvasPainterTest.cpp", | 1224 "paint/HTMLCanvasPainterTest.cpp", |
| 1224 "paint/LayerClipRecorderTest.cpp", | 1225 "paint/LayerClipRecorderTest.cpp", |
| 1225 "paint/LayoutObjectDrawingRecorderTest.cpp", | 1226 "paint/LayoutObjectDrawingRecorderTest.cpp", |
| 1226 "paint/NinePieceImageGridTest.cpp", | 1227 "paint/NinePieceImageGridTest.cpp", |
| 1227 "paint/ObjectPaintInvalidatorTest.cpp", | 1228 "paint/ObjectPaintInvalidatorTest.cpp", |
| 1228 "paint/PaintControllerPaintTest.cpp", | 1229 "paint/PaintControllerPaintTest.cpp", |
| 1229 "paint/PaintControllerPaintTest.h", | 1230 "paint/PaintControllerPaintTest.h", |
| 1230 "paint/PaintInfoTest.cpp", | 1231 "paint/PaintInfoTest.cpp", |
| 1231 "paint/PaintLayerClipperTest.cpp", | 1232 "paint/PaintLayerClipperTest.cpp", |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 sources = [ | 1289 sources = [ |
| 1289 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1290 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1290 "html/parser/TextResourceDecoderForFuzzing.h", | 1291 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1291 ] | 1292 ] |
| 1292 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1293 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1293 deps = [ | 1294 deps = [ |
| 1294 ":core", | 1295 ":core", |
| 1295 "../platform:blink_fuzzer_test_support", | 1296 "../platform:blink_fuzzer_test_support", |
| 1296 ] | 1297 ] |
| 1297 } | 1298 } |
| OLD | NEW |