| 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 1057 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1068 "dom/AttrTest.cpp", | 1068 "dom/AttrTest.cpp", |
| 1069 "dom/CSSSelectorWatchTest.cpp", | 1069 "dom/CSSSelectorWatchTest.cpp", |
| 1070 "dom/DOMImplementationTest.cpp", | 1070 "dom/DOMImplementationTest.cpp", |
| 1071 "dom/DOMMatrixTest.cpp", | 1071 "dom/DOMMatrixTest.cpp", |
| 1072 "dom/DocumentStatisticsCollectorTest.cpp", | 1072 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1073 "dom/DocumentTest.cpp", | 1073 "dom/DocumentTest.cpp", |
| 1074 "dom/DocumentUserGestureTokenTest.cpp", | 1074 "dom/DocumentUserGestureTokenTest.cpp", |
| 1075 "dom/ElementTest.cpp", | 1075 "dom/ElementTest.cpp", |
| 1076 "dom/ElementVisibilityObserverTest.cpp", | 1076 "dom/ElementVisibilityObserverTest.cpp", |
| 1077 "dom/ExecutionContextTaskTest.cpp", | 1077 "dom/ExecutionContextTaskTest.cpp", |
| 1078 "dom/IdleDeadlineTest.cpp", |
| 1078 "dom/MainThreadTaskRunnerTest.cpp", | 1079 "dom/MainThreadTaskRunnerTest.cpp", |
| 1079 "dom/NodeTest.cpp", | 1080 "dom/NodeTest.cpp", |
| 1080 "dom/NthIndexCacheTest.cpp", | 1081 "dom/NthIndexCacheTest.cpp", |
| 1081 "dom/RangeTest.cpp", | 1082 "dom/RangeTest.cpp", |
| 1082 "dom/ScriptRunnerTest.cpp", | 1083 "dom/ScriptRunnerTest.cpp", |
| 1083 "dom/SelectorQueryTest.cpp", | 1084 "dom/SelectorQueryTest.cpp", |
| 1084 "dom/StaticRangeTest.cpp", | 1085 "dom/StaticRangeTest.cpp", |
| 1085 "dom/StyleElementTest.cpp", | 1086 "dom/StyleElementTest.cpp", |
| 1086 "dom/StyleEngineTest.cpp", | 1087 "dom/StyleEngineTest.cpp", |
| 1087 "dom/TextTest.cpp", | 1088 "dom/TextTest.cpp", |
| (...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1354 sources = [ | 1355 sources = [ |
| 1355 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1356 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1356 ] | 1357 ] |
| 1357 deps = [ | 1358 deps = [ |
| 1358 ":core", | 1359 ":core", |
| 1359 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1360 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1360 ] | 1361 ] |
| 1361 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1362 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1362 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1363 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1363 } | 1364 } |
| OLD | NEW |