| 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/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/toolchain/toolchain.gni") | 7 import("//build/toolchain/toolchain.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
| 10 import("//testing/libfuzzer/fuzzer_test.gni") | 10 import("//testing/libfuzzer/fuzzer_test.gni") |
| (...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1206 "css/parser/CSSPropertyParserTest.cpp", | 1206 "css/parser/CSSPropertyParserTest.cpp", |
| 1207 "css/parser/CSSSelectorParserTest.cpp", | 1207 "css/parser/CSSSelectorParserTest.cpp", |
| 1208 "css/parser/CSSTokenizerTest.cpp", | 1208 "css/parser/CSSTokenizerTest.cpp", |
| 1209 "css/parser/MediaConditionTest.cpp", | 1209 "css/parser/MediaConditionTest.cpp", |
| 1210 "css/parser/SizesAttributeParserTest.cpp", | 1210 "css/parser/SizesAttributeParserTest.cpp", |
| 1211 "css/parser/SizesCalcParserTest.cpp", | 1211 "css/parser/SizesCalcParserTest.cpp", |
| 1212 "css/resolver/FontBuilderTest.cpp", | 1212 "css/resolver/FontBuilderTest.cpp", |
| 1213 "css/resolver/MatchResultTest.cpp", | 1213 "css/resolver/MatchResultTest.cpp", |
| 1214 "css/resolver/ScopedStyleResolverTest.cpp", | 1214 "css/resolver/ScopedStyleResolverTest.cpp", |
| 1215 "css/resolver/SharedStyleFinderTest.cpp", | 1215 "css/resolver/SharedStyleFinderTest.cpp", |
| 1216 "css/resolver/StyleAdjusterTest.cpp", |
| 1216 "css/threaded/CSSParserThreadedTest.cpp", | 1217 "css/threaded/CSSParserThreadedTest.cpp", |
| 1217 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", | 1218 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", |
| 1218 "css/threaded/FilterOperationResolverThreadedTest.cpp", | 1219 "css/threaded/FilterOperationResolverThreadedTest.cpp", |
| 1219 "css/threaded/FontObjectThreadedTest.cpp", | 1220 "css/threaded/FontObjectThreadedTest.cpp", |
| 1220 "dom/AttrTest.cpp", | 1221 "dom/AttrTest.cpp", |
| 1221 "dom/CSSSelectorWatchTest.cpp", | 1222 "dom/CSSSelectorWatchTest.cpp", |
| 1222 "dom/DOMImplementationTest.cpp", | 1223 "dom/DOMImplementationTest.cpp", |
| 1223 "dom/DocumentStatisticsCollectorTest.cpp", | 1224 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1224 "dom/DocumentTest.cpp", | 1225 "dom/DocumentTest.cpp", |
| 1225 "dom/ElementTest.cpp", | 1226 "dom/ElementTest.cpp", |
| (...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1576 sources = [ | 1577 sources = [ |
| 1577 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1578 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1578 ] | 1579 ] |
| 1579 deps = [ | 1580 deps = [ |
| 1580 ":core", | 1581 ":core", |
| 1581 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1582 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1582 ] | 1583 ] |
| 1583 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1584 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1584 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1585 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1585 } | 1586 } |
| OLD | NEW |