| 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 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1207 "css/parser/CSSPropertyParserTest.cpp", | 1207 "css/parser/CSSPropertyParserTest.cpp", |
| 1208 "css/parser/CSSSelectorParserTest.cpp", | 1208 "css/parser/CSSSelectorParserTest.cpp", |
| 1209 "css/parser/CSSTokenizerTest.cpp", | 1209 "css/parser/CSSTokenizerTest.cpp", |
| 1210 "css/parser/MediaConditionTest.cpp", | 1210 "css/parser/MediaConditionTest.cpp", |
| 1211 "css/parser/SizesAttributeParserTest.cpp", | 1211 "css/parser/SizesAttributeParserTest.cpp", |
| 1212 "css/parser/SizesCalcParserTest.cpp", | 1212 "css/parser/SizesCalcParserTest.cpp", |
| 1213 "css/resolver/FontBuilderTest.cpp", | 1213 "css/resolver/FontBuilderTest.cpp", |
| 1214 "css/resolver/MatchResultTest.cpp", | 1214 "css/resolver/MatchResultTest.cpp", |
| 1215 "css/resolver/ScopedStyleResolverTest.cpp", | 1215 "css/resolver/ScopedStyleResolverTest.cpp", |
| 1216 "css/resolver/SharedStyleFinderTest.cpp", | 1216 "css/resolver/SharedStyleFinderTest.cpp", |
| 1217 "css/resolver/StyleAdjusterTest.cpp", |
| 1217 "css/threaded/CSSParserThreadedTest.cpp", | 1218 "css/threaded/CSSParserThreadedTest.cpp", |
| 1218 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", | 1219 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", |
| 1219 "css/threaded/FilterOperationResolverThreadedTest.cpp", | 1220 "css/threaded/FilterOperationResolverThreadedTest.cpp", |
| 1220 "css/threaded/FontObjectThreadedTest.cpp", | 1221 "css/threaded/FontObjectThreadedTest.cpp", |
| 1221 "dom/AttrTest.cpp", | 1222 "dom/AttrTest.cpp", |
| 1222 "dom/CSSSelectorWatchTest.cpp", | 1223 "dom/CSSSelectorWatchTest.cpp", |
| 1223 "dom/DOMImplementationTest.cpp", | 1224 "dom/DOMImplementationTest.cpp", |
| 1224 "dom/DocumentStatisticsCollectorTest.cpp", | 1225 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1225 "dom/DocumentTest.cpp", | 1226 "dom/DocumentTest.cpp", |
| 1226 "dom/ElementTest.cpp", | 1227 "dom/ElementTest.cpp", |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1570 sources = [ | 1571 sources = [ |
| 1571 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1572 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1572 ] | 1573 ] |
| 1573 deps = [ | 1574 deps = [ |
| 1574 ":core", | 1575 ":core", |
| 1575 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1576 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1576 ] | 1577 ] |
| 1577 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1578 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1578 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1579 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1579 } | 1580 } |
| OLD | NEW |