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