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 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1056 "css/parser/CSSParserFastPathsTest.cpp", | 1056 "css/parser/CSSParserFastPathsTest.cpp", |
1057 "css/parser/CSSParserTokenTest.cpp", | 1057 "css/parser/CSSParserTokenTest.cpp", |
1058 "css/parser/CSSPropertyParserTest.cpp", | 1058 "css/parser/CSSPropertyParserTest.cpp", |
1059 "css/parser/CSSSelectorParserTest.cpp", | 1059 "css/parser/CSSSelectorParserTest.cpp", |
1060 "css/parser/CSSTokenizerTest.cpp", | 1060 "css/parser/CSSTokenizerTest.cpp", |
1061 "css/parser/MediaConditionTest.cpp", | 1061 "css/parser/MediaConditionTest.cpp", |
1062 "css/parser/SizesAttributeParserTest.cpp", | 1062 "css/parser/SizesAttributeParserTest.cpp", |
1063 "css/parser/SizesCalcParserTest.cpp", | 1063 "css/parser/SizesCalcParserTest.cpp", |
1064 "css/resolver/FontBuilderTest.cpp", | 1064 "css/resolver/FontBuilderTest.cpp", |
1065 "css/resolver/MatchResultTest.cpp", | 1065 "css/resolver/MatchResultTest.cpp", |
| 1066 "css/resolver/ScopedStyleResolverTest.cpp", |
1066 "css/resolver/SharedStyleFinderTest.cpp", | 1067 "css/resolver/SharedStyleFinderTest.cpp", |
1067 "dom/AttrTest.cpp", | 1068 "dom/AttrTest.cpp", |
1068 "dom/CSSSelectorWatchTest.cpp", | 1069 "dom/CSSSelectorWatchTest.cpp", |
1069 "dom/DOMImplementationTest.cpp", | 1070 "dom/DOMImplementationTest.cpp", |
1070 "dom/DOMMatrixTest.cpp", | 1071 "dom/DOMMatrixTest.cpp", |
1071 "dom/DocumentStatisticsCollectorTest.cpp", | 1072 "dom/DocumentStatisticsCollectorTest.cpp", |
1072 "dom/DocumentTest.cpp", | 1073 "dom/DocumentTest.cpp", |
1073 "dom/DocumentUserGestureTokenTest.cpp", | 1074 "dom/DocumentUserGestureTokenTest.cpp", |
1074 "dom/ElementTest.cpp", | 1075 "dom/ElementTest.cpp", |
1075 "dom/ElementVisibilityObserverTest.cpp", | 1076 "dom/ElementVisibilityObserverTest.cpp", |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1340 sources = [ | 1341 sources = [ |
1341 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1342 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
1342 ] | 1343 ] |
1343 deps = [ | 1344 deps = [ |
1344 ":core", | 1345 ":core", |
1345 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1346 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
1346 ] | 1347 ] |
1347 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1348 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
1348 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1349 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
1349 } | 1350 } |
OLD | NEW |