| 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 1278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 "paint/PaintLayerClipperTest.cpp", | 1289 "paint/PaintLayerClipperTest.cpp", |
| 1290 "paint/PaintLayerPainterTest.cpp", | 1290 "paint/PaintLayerPainterTest.cpp", |
| 1291 "paint/PaintLayerScrollableAreaTest.cpp", | 1291 "paint/PaintLayerScrollableAreaTest.cpp", |
| 1292 "paint/PaintLayerTest.cpp", | 1292 "paint/PaintLayerTest.cpp", |
| 1293 "paint/PaintPropertyTreeBuilderTest.cpp", | 1293 "paint/PaintPropertyTreeBuilderTest.cpp", |
| 1294 "paint/PaintPropertyTreePrinterTest.cpp", | 1294 "paint/PaintPropertyTreePrinterTest.cpp", |
| 1295 "paint/PrePaintTreeWalkTest.cpp", | 1295 "paint/PrePaintTreeWalkTest.cpp", |
| 1296 "paint/SVGInlineTextBoxPainterTest.cpp", | 1296 "paint/SVGInlineTextBoxPainterTest.cpp", |
| 1297 "paint/StubChromeClientForSPv2.h", | 1297 "paint/StubChromeClientForSPv2.h", |
| 1298 "paint/TableCellPainterTest.cpp", | 1298 "paint/TableCellPainterTest.cpp", |
| 1299 "paint/TablePainterTest.cpp", | |
| 1300 "paint/TextPainterTest.cpp", | 1299 "paint/TextPainterTest.cpp", |
| 1301 "paint/VideoPainterTest.cpp", | 1300 "paint/VideoPainterTest.cpp", |
| 1302 "streams/ReadableStreamOperationsTest.cpp", | 1301 "streams/ReadableStreamOperationsTest.cpp", |
| 1303 "style/ComputedStyleTest.cpp", | 1302 "style/ComputedStyleTest.cpp", |
| 1304 "style/FilterOperationsTest.cpp", | 1303 "style/FilterOperationsTest.cpp", |
| 1305 "style/OutlineValueTest.cpp", | 1304 "style/OutlineValueTest.cpp", |
| 1306 "style/SVGComputedStyleTest.cpp", | 1305 "style/SVGComputedStyleTest.cpp", |
| 1307 "svg/SVGPathParserTest.cpp", | 1306 "svg/SVGPathParserTest.cpp", |
| 1308 "svg/UnsafeSVGAttributeSanitizationTest.cpp", | 1307 "svg/UnsafeSVGAttributeSanitizationTest.cpp", |
| 1309 "svg/graphics/SVGImageTest.cpp", | 1308 "svg/graphics/SVGImageTest.cpp", |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1364 sources = [ | 1363 sources = [ |
| 1365 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1364 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1366 ] | 1365 ] |
| 1367 deps = [ | 1366 deps = [ |
| 1368 ":core", | 1367 ":core", |
| 1369 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1368 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1370 ] | 1369 ] |
| 1371 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1370 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1372 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1371 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1373 } | 1372 } |
| OLD | NEW |