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 1158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1169 "css/parser/CSSTokenizerTest.cpp", | 1169 "css/parser/CSSTokenizerTest.cpp", |
1170 "css/parser/MediaConditionTest.cpp", | 1170 "css/parser/MediaConditionTest.cpp", |
1171 "css/parser/SizesAttributeParserTest.cpp", | 1171 "css/parser/SizesAttributeParserTest.cpp", |
1172 "css/parser/SizesCalcParserTest.cpp", | 1172 "css/parser/SizesCalcParserTest.cpp", |
1173 "css/resolver/FontBuilderTest.cpp", | 1173 "css/resolver/FontBuilderTest.cpp", |
1174 "css/resolver/MatchResultTest.cpp", | 1174 "css/resolver/MatchResultTest.cpp", |
1175 "css/resolver/ScopedStyleResolverTest.cpp", | 1175 "css/resolver/ScopedStyleResolverTest.cpp", |
1176 "css/resolver/SharedStyleFinderTest.cpp", | 1176 "css/resolver/SharedStyleFinderTest.cpp", |
1177 "dom/AttrTest.cpp", | 1177 "dom/AttrTest.cpp", |
1178 "dom/CSSSelectorWatchTest.cpp", | 1178 "dom/CSSSelectorWatchTest.cpp", |
| 1179 "dom/ClassicPendingScriptTest.cpp", |
1179 "dom/DOMImplementationTest.cpp", | 1180 "dom/DOMImplementationTest.cpp", |
1180 "dom/DocumentStatisticsCollectorTest.cpp", | 1181 "dom/DocumentStatisticsCollectorTest.cpp", |
1181 "dom/DocumentTest.cpp", | 1182 "dom/DocumentTest.cpp", |
1182 "dom/DocumentUserGestureTokenTest.cpp", | 1183 "dom/DocumentUserGestureTokenTest.cpp", |
1183 "dom/ElementTest.cpp", | 1184 "dom/ElementTest.cpp", |
1184 "dom/ElementVisibilityObserverTest.cpp", | 1185 "dom/ElementVisibilityObserverTest.cpp", |
1185 "dom/ExecutionContextTaskTest.cpp", | 1186 "dom/ExecutionContextTaskTest.cpp", |
1186 "dom/IdleDeadlineTest.cpp", | 1187 "dom/IdleDeadlineTest.cpp", |
1187 "dom/LayoutTreeBuilderTraversalTest.cpp", | 1188 "dom/LayoutTreeBuilderTraversalTest.cpp", |
1188 "dom/MockScriptElementBase.h", | 1189 "dom/MockScriptElementBase.h", |
(...skipping 272 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1461 sources = [ | 1462 sources = [ |
1462 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1463 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
1463 ] | 1464 ] |
1464 deps = [ | 1465 deps = [ |
1465 ":core", | 1466 ":core", |
1466 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1467 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
1467 ] | 1468 ] |
1468 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1469 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
1469 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1470 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
1470 } | 1471 } |
OLD | NEW |