| 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 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1242 "paint/ObjectPaintInvalidatorTest.cpp", | 1242 "paint/ObjectPaintInvalidatorTest.cpp", |
| 1243 "paint/PaintControllerPaintTest.cpp", | 1243 "paint/PaintControllerPaintTest.cpp", |
| 1244 "paint/PaintControllerPaintTest.h", | 1244 "paint/PaintControllerPaintTest.h", |
| 1245 "paint/PaintInfoTest.cpp", | 1245 "paint/PaintInfoTest.cpp", |
| 1246 "paint/PaintLayerClipperTest.cpp", | 1246 "paint/PaintLayerClipperTest.cpp", |
| 1247 "paint/PaintLayerPainterTest.cpp", | 1247 "paint/PaintLayerPainterTest.cpp", |
| 1248 "paint/PaintLayerScrollableAreaTest.cpp", | 1248 "paint/PaintLayerScrollableAreaTest.cpp", |
| 1249 "paint/PaintLayerTest.cpp", | 1249 "paint/PaintLayerTest.cpp", |
| 1250 "paint/PaintPropertyTreeBuilderTest.cpp", | 1250 "paint/PaintPropertyTreeBuilderTest.cpp", |
| 1251 "paint/PaintPropertyTreePrinterTest.cpp", | 1251 "paint/PaintPropertyTreePrinterTest.cpp", |
| 1252 "paint/PrePaintTreeWalkTest.cpp", |
| 1252 "paint/SVGInlineTextBoxPainterTest.cpp", | 1253 "paint/SVGInlineTextBoxPainterTest.cpp", |
| 1253 "paint/StubChromeClientForSPv2.h", | 1254 "paint/StubChromeClientForSPv2.h", |
| 1254 "paint/TableCellPainterTest.cpp", | 1255 "paint/TableCellPainterTest.cpp", |
| 1255 "paint/TextPainterTest.cpp", | 1256 "paint/TextPainterTest.cpp", |
| 1256 "paint/VideoPainterTest.cpp", | 1257 "paint/VideoPainterTest.cpp", |
| 1257 "streams/ReadableStreamOperationsTest.cpp", | 1258 "streams/ReadableStreamOperationsTest.cpp", |
| 1258 "style/ComputedStyleTest.cpp", | 1259 "style/ComputedStyleTest.cpp", |
| 1259 "style/FilterOperationsTest.cpp", | 1260 "style/FilterOperationsTest.cpp", |
| 1260 "style/OutlineValueTest.cpp", | 1261 "style/OutlineValueTest.cpp", |
| 1261 "style/SVGComputedStyleTest.cpp", | 1262 "style/SVGComputedStyleTest.cpp", |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1303 sources = [ | 1304 sources = [ |
| 1304 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1305 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1305 "html/parser/TextResourceDecoderForFuzzing.h", | 1306 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1306 ] | 1307 ] |
| 1307 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1308 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1308 deps = [ | 1309 deps = [ |
| 1309 ":core", | 1310 ":core", |
| 1310 "../platform:blink_fuzzer_test_support", | 1311 "../platform:blink_fuzzer_test_support", |
| 1311 ] | 1312 ] |
| 1312 } | 1313 } |
| OLD | NEW |