| 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 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1208 "css/parser/CSSPropertyParserTest.cpp", | 1208 "css/parser/CSSPropertyParserTest.cpp", |
| 1209 "css/parser/CSSSelectorParserTest.cpp", | 1209 "css/parser/CSSSelectorParserTest.cpp", |
| 1210 "css/parser/CSSTokenizerTest.cpp", | 1210 "css/parser/CSSTokenizerTest.cpp", |
| 1211 "css/parser/MediaConditionTest.cpp", | 1211 "css/parser/MediaConditionTest.cpp", |
| 1212 "css/parser/SizesAttributeParserTest.cpp", | 1212 "css/parser/SizesAttributeParserTest.cpp", |
| 1213 "css/parser/SizesCalcParserTest.cpp", | 1213 "css/parser/SizesCalcParserTest.cpp", |
| 1214 "css/resolver/FontBuilderTest.cpp", | 1214 "css/resolver/FontBuilderTest.cpp", |
| 1215 "css/resolver/MatchResultTest.cpp", | 1215 "css/resolver/MatchResultTest.cpp", |
| 1216 "css/resolver/ScopedStyleResolverTest.cpp", | 1216 "css/resolver/ScopedStyleResolverTest.cpp", |
| 1217 "css/resolver/SharedStyleFinderTest.cpp", | 1217 "css/resolver/SharedStyleFinderTest.cpp", |
| 1218 "css/resolver/StyleAdjusterTest.cpp", |
| 1218 "css/threaded/CSSParserThreadedTest.cpp", | 1219 "css/threaded/CSSParserThreadedTest.cpp", |
| 1219 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", | 1220 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", |
| 1220 "css/threaded/FilterOperationResolverThreadedTest.cpp", | 1221 "css/threaded/FilterOperationResolverThreadedTest.cpp", |
| 1221 "css/threaded/FontObjectThreadedTest.cpp", | 1222 "css/threaded/FontObjectThreadedTest.cpp", |
| 1222 "dom/AttrTest.cpp", | 1223 "dom/AttrTest.cpp", |
| 1223 "dom/CSSSelectorWatchTest.cpp", | 1224 "dom/CSSSelectorWatchTest.cpp", |
| 1224 "dom/DOMImplementationTest.cpp", | 1225 "dom/DOMImplementationTest.cpp", |
| 1225 "dom/DocumentStatisticsCollectorTest.cpp", | 1226 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1226 "dom/DocumentTest.cpp", | 1227 "dom/DocumentTest.cpp", |
| 1227 "dom/ElementTest.cpp", | 1228 "dom/ElementTest.cpp", |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1587 sources = [ | 1588 sources = [ |
| 1588 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1589 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1589 ] | 1590 ] |
| 1590 deps = [ | 1591 deps = [ |
| 1591 ":core", | 1592 ":core", |
| 1592 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1593 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1593 ] | 1594 ] |
| 1594 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1595 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1595 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1596 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1596 } | 1597 } |
| OLD | NEW |