| 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 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1258 "paint/NinePieceImageGridTest.cpp", | 1258 "paint/NinePieceImageGridTest.cpp", |
| 1259 "paint/ObjectPaintInvalidatorTest.cpp", | 1259 "paint/ObjectPaintInvalidatorTest.cpp", |
| 1260 "paint/PaintControllerPaintTest.cpp", | 1260 "paint/PaintControllerPaintTest.cpp", |
| 1261 "paint/PaintControllerPaintTest.h", | 1261 "paint/PaintControllerPaintTest.h", |
| 1262 "paint/PaintInfoTest.cpp", | 1262 "paint/PaintInfoTest.cpp", |
| 1263 "paint/PaintLayerClipperTest.cpp", | 1263 "paint/PaintLayerClipperTest.cpp", |
| 1264 "paint/PaintLayerPainterTest.cpp", | 1264 "paint/PaintLayerPainterTest.cpp", |
| 1265 "paint/PaintLayerScrollableAreaTest.cpp", | 1265 "paint/PaintLayerScrollableAreaTest.cpp", |
| 1266 "paint/PaintLayerTest.cpp", | 1266 "paint/PaintLayerTest.cpp", |
| 1267 "paint/PaintPropertyTreeBuilderTest.cpp", | 1267 "paint/PaintPropertyTreeBuilderTest.cpp", |
| 1268 "paint/PaintPropertyTreeBuilderTest.h", |
| 1268 "paint/PaintPropertyTreePrinterTest.cpp", | 1269 "paint/PaintPropertyTreePrinterTest.cpp", |
| 1270 "paint/PaintPropertyTreeUpdateTests.cpp", |
| 1269 "paint/PrePaintTreeWalkTest.cpp", | 1271 "paint/PrePaintTreeWalkTest.cpp", |
| 1270 "paint/SVGInlineTextBoxPainterTest.cpp", | 1272 "paint/SVGInlineTextBoxPainterTest.cpp", |
| 1271 "paint/StubChromeClientForSPv2.h", | 1273 "paint/StubChromeClientForSPv2.h", |
| 1272 "paint/TableCellPainterTest.cpp", | 1274 "paint/TableCellPainterTest.cpp", |
| 1273 "paint/TextPainterTest.cpp", | 1275 "paint/TextPainterTest.cpp", |
| 1274 "paint/VideoPainterTest.cpp", | 1276 "paint/VideoPainterTest.cpp", |
| 1275 "streams/ReadableStreamOperationsTest.cpp", | 1277 "streams/ReadableStreamOperationsTest.cpp", |
| 1276 "style/ComputedStyleTest.cpp", | 1278 "style/ComputedStyleTest.cpp", |
| 1277 "style/FilterOperationsTest.cpp", | 1279 "style/FilterOperationsTest.cpp", |
| 1278 "style/OutlineValueTest.cpp", | 1280 "style/OutlineValueTest.cpp", |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1338 sources = [ | 1340 sources = [ |
| 1339 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1341 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1340 ] | 1342 ] |
| 1341 deps = [ | 1343 deps = [ |
| 1342 ":core", | 1344 ":core", |
| 1343 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1345 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1344 ] | 1346 ] |
| 1345 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1347 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1346 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1348 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1347 } | 1349 } |
| OLD | NEW |