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 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1207 "origin_trials/OriginTrialContextTest.cpp", | 1207 "origin_trials/OriginTrialContextTest.cpp", |
1208 "page/ChromeClientTest.cpp", | 1208 "page/ChromeClientTest.cpp", |
1209 "page/ContextMenuControllerTest.cpp", | 1209 "page/ContextMenuControllerTest.cpp", |
1210 "page/FocusControllerTest.cpp", | 1210 "page/FocusControllerTest.cpp", |
1211 "page/NetworkStateNotifierTest.cpp", | 1211 "page/NetworkStateNotifierTest.cpp", |
1212 "page/PagePopupClientTest.cpp", | 1212 "page/PagePopupClientTest.cpp", |
1213 "page/PrintContextTest.cpp", | 1213 "page/PrintContextTest.cpp", |
1214 "page/WindowFeaturesTest.cpp", | 1214 "page/WindowFeaturesTest.cpp", |
1215 "page/scrolling/ScrollStateTest.cpp", | 1215 "page/scrolling/ScrollStateTest.cpp", |
1216 "page/scrolling/SnapCoordinatorTest.cpp", | 1216 "page/scrolling/SnapCoordinatorTest.cpp", |
| 1217 "paint/BlockPaintInvalidatorTest.cpp", |
1217 "paint/BoxPaintInvalidatorTest.cpp", | 1218 "paint/BoxPaintInvalidatorTest.cpp", |
1218 "paint/FirstMeaningfulPaintDetectorTest.cpp", | 1219 "paint/FirstMeaningfulPaintDetectorTest.cpp", |
1219 "paint/HTMLCanvasPainterTest.cpp", | 1220 "paint/HTMLCanvasPainterTest.cpp", |
1220 "paint/LayerClipRecorderTest.cpp", | 1221 "paint/LayerClipRecorderTest.cpp", |
1221 "paint/LayoutObjectDrawingRecorderTest.cpp", | 1222 "paint/LayoutObjectDrawingRecorderTest.cpp", |
1222 "paint/NinePieceImageGridTest.cpp", | 1223 "paint/NinePieceImageGridTest.cpp", |
1223 "paint/ObjectPaintInvalidatorTest.cpp", | 1224 "paint/ObjectPaintInvalidatorTest.cpp", |
1224 "paint/PaintControllerPaintTest.cpp", | 1225 "paint/PaintControllerPaintTest.cpp", |
1225 "paint/PaintControllerPaintTest.h", | 1226 "paint/PaintControllerPaintTest.h", |
1226 "paint/PaintInfoTest.cpp", | 1227 "paint/PaintInfoTest.cpp", |
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1304 sources = [ | 1305 sources = [ |
1305 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1306 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
1306 ] | 1307 ] |
1307 deps = [ | 1308 deps = [ |
1308 ":core", | 1309 ":core", |
1309 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1310 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
1310 ] | 1311 ] |
1311 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1312 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
1312 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1313 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
1313 } | 1314 } |
OLD | NEW |