| 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 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 "css/parser/CSSPropertyParserTest.cpp", | 1231 "css/parser/CSSPropertyParserTest.cpp", |
| 1232 "css/parser/CSSSelectorParserTest.cpp", | 1232 "css/parser/CSSSelectorParserTest.cpp", |
| 1233 "css/parser/CSSTokenizerTest.cpp", | 1233 "css/parser/CSSTokenizerTest.cpp", |
| 1234 "css/parser/MediaConditionTest.cpp", | 1234 "css/parser/MediaConditionTest.cpp", |
| 1235 "css/parser/SizesAttributeParserTest.cpp", | 1235 "css/parser/SizesAttributeParserTest.cpp", |
| 1236 "css/parser/SizesCalcParserTest.cpp", | 1236 "css/parser/SizesCalcParserTest.cpp", |
| 1237 "css/resolver/FontBuilderTest.cpp", | 1237 "css/resolver/FontBuilderTest.cpp", |
| 1238 "css/resolver/MatchResultTest.cpp", | 1238 "css/resolver/MatchResultTest.cpp", |
| 1239 "css/resolver/ScopedStyleResolverTest.cpp", | 1239 "css/resolver/ScopedStyleResolverTest.cpp", |
| 1240 "css/resolver/SharedStyleFinderTest.cpp", | 1240 "css/resolver/SharedStyleFinderTest.cpp", |
| 1241 "css/resolver/StyleAdjusterTest.cpp", |
| 1241 "css/threaded/CSSParserThreadedTest.cpp", | 1242 "css/threaded/CSSParserThreadedTest.cpp", |
| 1242 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", | 1243 "css/threaded/CSSToLengthConversionDataThreadedTest.cpp", |
| 1243 "css/threaded/FilterOperationResolverThreadedTest.cpp", | 1244 "css/threaded/FilterOperationResolverThreadedTest.cpp", |
| 1244 "css/threaded/FontObjectThreadedTest.cpp", | 1245 "css/threaded/FontObjectThreadedTest.cpp", |
| 1245 "dom/AttrTest.cpp", | 1246 "dom/AttrTest.cpp", |
| 1246 "dom/CSSSelectorWatchTest.cpp", | 1247 "dom/CSSSelectorWatchTest.cpp", |
| 1247 "dom/DOMImplementationTest.cpp", | 1248 "dom/DOMImplementationTest.cpp", |
| 1248 "dom/DocumentStatisticsCollectorTest.cpp", | 1249 "dom/DocumentStatisticsCollectorTest.cpp", |
| 1249 "dom/DocumentTest.cpp", | 1250 "dom/DocumentTest.cpp", |
| 1250 "dom/ElementTest.cpp", | 1251 "dom/ElementTest.cpp", |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1611 sources = [ | 1612 sources = [ |
| 1612 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1613 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1613 ] | 1614 ] |
| 1614 deps = [ | 1615 deps = [ |
| 1615 ":core", | 1616 ":core", |
| 1616 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1617 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1617 ] | 1618 ] |
| 1618 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1619 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1619 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1620 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1620 } | 1621 } |
| OLD | NEW |