| 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 1167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 "dom/CSSSelectorWatchTest.cpp", | 1178 "dom/CSSSelectorWatchTest.cpp", |
| 1179 "dom/DOMImplementationTest.cpp", | 1179 "dom/DOMImplementationTest.cpp", |
| 1180 "dom/DocumentStatisticsCollectorTest.cpp", | 1180 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1181 "dom/DocumentTest.cpp", | 1181 "dom/DocumentTest.cpp", |
| 1182 "dom/DocumentUserGestureTokenTest.cpp", | 1182 "dom/DocumentUserGestureTokenTest.cpp", |
| 1183 "dom/ElementTest.cpp", | 1183 "dom/ElementTest.cpp", |
| 1184 "dom/ElementVisibilityObserverTest.cpp", | 1184 "dom/ElementVisibilityObserverTest.cpp", |
| 1185 "dom/ExecutionContextTaskTest.cpp", | 1185 "dom/ExecutionContextTaskTest.cpp", |
| 1186 "dom/IdleDeadlineTest.cpp", | 1186 "dom/IdleDeadlineTest.cpp", |
| 1187 "dom/LayoutTreeBuilderTraversalTest.cpp", | 1187 "dom/LayoutTreeBuilderTraversalTest.cpp", |
| 1188 "dom/MockScriptElementBase.h", |
| 1188 "dom/ModulatorTest.cpp", | 1189 "dom/ModulatorTest.cpp", |
| 1189 "dom/ModuleMapTest.cpp", | 1190 "dom/ModuleMapTest.cpp", |
| 1190 "dom/MutationObserverTest.cpp", | 1191 "dom/MutationObserverTest.cpp", |
| 1191 "dom/NodeTest.cpp", | 1192 "dom/NodeTest.cpp", |
| 1192 "dom/NthIndexCacheTest.cpp", | 1193 "dom/NthIndexCacheTest.cpp", |
| 1193 "dom/RangeTest.cpp", | 1194 "dom/RangeTest.cpp", |
| 1194 "dom/ScriptModuleResolverImplTest.cpp", | 1195 "dom/ScriptModuleResolverImplTest.cpp", |
| 1195 "dom/ScriptRunnerTest.cpp", | 1196 "dom/ScriptRunnerTest.cpp", |
| 1196 "dom/ScriptedAnimationControllerTest.cpp", | 1197 "dom/ScriptedAnimationControllerTest.cpp", |
| 1197 "dom/SelectorQueryTest.cpp", | 1198 "dom/SelectorQueryTest.cpp", |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1460 sources = [ | 1461 sources = [ |
| 1461 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1462 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1462 ] | 1463 ] |
| 1463 deps = [ | 1464 deps = [ |
| 1464 ":core", | 1465 ":core", |
| 1465 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1466 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1466 ] | 1467 ] |
| 1467 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1468 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1468 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1469 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1469 } | 1470 } |
| OLD | NEW |