| 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 1263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1274 "paint/ObjectPaintInvalidatorTest.cpp", | 1274 "paint/ObjectPaintInvalidatorTest.cpp", |
| 1275 "paint/PaintControllerPaintTest.cpp", | 1275 "paint/PaintControllerPaintTest.cpp", |
| 1276 "paint/PaintControllerPaintTest.h", | 1276 "paint/PaintControllerPaintTest.h", |
| 1277 "paint/PaintInfoTest.cpp", | 1277 "paint/PaintInfoTest.cpp", |
| 1278 "paint/PaintLayerClipperTest.cpp", | 1278 "paint/PaintLayerClipperTest.cpp", |
| 1279 "paint/PaintLayerPainterTest.cpp", | 1279 "paint/PaintLayerPainterTest.cpp", |
| 1280 "paint/PaintLayerScrollableAreaTest.cpp", | 1280 "paint/PaintLayerScrollableAreaTest.cpp", |
| 1281 "paint/PaintLayerTest.cpp", | 1281 "paint/PaintLayerTest.cpp", |
| 1282 "paint/PaintPropertyTreeBuilderTest.cpp", | 1282 "paint/PaintPropertyTreeBuilderTest.cpp", |
| 1283 "paint/PaintPropertyTreePrinterTest.cpp", | 1283 "paint/PaintPropertyTreePrinterTest.cpp", |
| 1284 "paint/PrePaintTreeWalkTest.cpp", |
| 1284 "paint/SVGInlineTextBoxPainterTest.cpp", | 1285 "paint/SVGInlineTextBoxPainterTest.cpp", |
| 1285 "paint/StubChromeClientForSPv2.h", | 1286 "paint/StubChromeClientForSPv2.h", |
| 1286 "paint/TableCellPainterTest.cpp", | 1287 "paint/TableCellPainterTest.cpp", |
| 1287 "paint/TextPainterTest.cpp", | 1288 "paint/TextPainterTest.cpp", |
| 1288 "paint/VideoPainterTest.cpp", | 1289 "paint/VideoPainterTest.cpp", |
| 1289 "streams/ReadableStreamOperationsTest.cpp", | 1290 "streams/ReadableStreamOperationsTest.cpp", |
| 1290 "style/ComputedStyleTest.cpp", | 1291 "style/ComputedStyleTest.cpp", |
| 1291 "style/FilterOperationsTest.cpp", | 1292 "style/FilterOperationsTest.cpp", |
| 1292 "style/OutlineValueTest.cpp", | 1293 "style/OutlineValueTest.cpp", |
| 1293 "style/SVGComputedStyleTest.cpp", | 1294 "style/SVGComputedStyleTest.cpp", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1349 sources = [ | 1350 sources = [ |
| 1350 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1351 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1351 ] | 1352 ] |
| 1352 deps = [ | 1353 deps = [ |
| 1353 ":core", | 1354 ":core", |
| 1354 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1355 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1355 ] | 1356 ] |
| 1356 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1357 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1357 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1358 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1358 } | 1359 } |
| OLD | NEW |