| 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 1099 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1110 "animation/DocumentTimelineTest.cpp", | 1110 "animation/DocumentTimelineTest.cpp", |
| 1111 "animation/EffectInputTest.cpp", | 1111 "animation/EffectInputTest.cpp", |
| 1112 "animation/EffectStackTest.cpp", | 1112 "animation/EffectStackTest.cpp", |
| 1113 "animation/InterpolableValueTest.cpp", | 1113 "animation/InterpolableValueTest.cpp", |
| 1114 "animation/InterpolationEffectTest.cpp", | 1114 "animation/InterpolationEffectTest.cpp", |
| 1115 "animation/KeyframeEffectModelTest.cpp", | 1115 "animation/KeyframeEffectModelTest.cpp", |
| 1116 "animation/KeyframeEffectTest.cpp", | 1116 "animation/KeyframeEffectTest.cpp", |
| 1117 "animation/PropertyHandleTest.cpp", | 1117 "animation/PropertyHandleTest.cpp", |
| 1118 "animation/TimingCalculationsTest.cpp", | 1118 "animation/TimingCalculationsTest.cpp", |
| 1119 "animation/TimingInputTest.cpp", | 1119 "animation/TimingInputTest.cpp", |
| 1120 "animation/animatable/AnimatableColorTest.cpp", | |
| 1121 "animation/animatable/AnimatableDoubleAndBoolTest.cpp", | |
| 1122 "animation/animatable/AnimatableDoubleTest.cpp", | |
| 1123 "animation/animatable/AnimatableLengthTest.cpp", | |
| 1124 "animation/animatable/AnimatableNeutralTest.cpp", | |
| 1125 "animation/animatable/AnimatableStrokeDasharrayListTest.cpp", | |
| 1126 "animation/animatable/AnimatableUnknownTest.cpp", | |
| 1127 "animation/animatable/AnimatableValueTestHelper.cpp", | |
| 1128 "animation/animatable/AnimatableValueTestHelper.h", | |
| 1129 "animation/animatable/AnimatableValueTestHelperTest.cpp", | |
| 1130 "clipboard/DataObjectTest.cpp", | 1120 "clipboard/DataObjectTest.cpp", |
| 1131 "css/ActiveStyleSheetsTest.cpp", | 1121 "css/ActiveStyleSheetsTest.cpp", |
| 1132 "css/AffectedByFocusTest.cpp", | 1122 "css/AffectedByFocusTest.cpp", |
| 1133 "css/CSSCalculationValueTest.cpp", | 1123 "css/CSSCalculationValueTest.cpp", |
| 1134 "css/CSSFontFaceSourceTest.cpp", | 1124 "css/CSSFontFaceSourceTest.cpp", |
| 1135 "css/CSSPageRuleTest.cpp", | 1125 "css/CSSPageRuleTest.cpp", |
| 1136 "css/CSSSelectorTest.cpp", | 1126 "css/CSSSelectorTest.cpp", |
| 1137 "css/CSSStyleDeclarationTest.cpp", | 1127 "css/CSSStyleDeclarationTest.cpp", |
| 1138 "css/CSSTestHelper.cpp", | 1128 "css/CSSTestHelper.cpp", |
| 1139 "css/CSSTestHelper.h", | 1129 "css/CSSTestHelper.h", |
| (...skipping 308 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1448 sources = [ | 1438 sources = [ |
| 1449 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1439 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1450 ] | 1440 ] |
| 1451 deps = [ | 1441 deps = [ |
| 1452 ":core", | 1442 ":core", |
| 1453 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1443 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1454 ] | 1444 ] |
| 1455 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1445 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1456 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1446 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1457 } | 1447 } |
| OLD | NEW |