| 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 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1201 "frame/LocalFrameTest.cpp", | 1201 "frame/LocalFrameTest.cpp", |
| 1202 "frame/OriginsUsingFeaturesTest.cpp", | 1202 "frame/OriginsUsingFeaturesTest.cpp", |
| 1203 "frame/PerformanceMonitorTest.cpp", | 1203 "frame/PerformanceMonitorTest.cpp", |
| 1204 "frame/RootFrameViewportTest.cpp", | 1204 "frame/RootFrameViewportTest.cpp", |
| 1205 "frame/SubresourceIntegrityTest.cpp", | 1205 "frame/SubresourceIntegrityTest.cpp", |
| 1206 "frame/UseCounterTest.cpp", | 1206 "frame/UseCounterTest.cpp", |
| 1207 "frame/csp/CSPDirectiveListTest.cpp", | 1207 "frame/csp/CSPDirectiveListTest.cpp", |
| 1208 "frame/csp/CSPSourceTest.cpp", | 1208 "frame/csp/CSPSourceTest.cpp", |
| 1209 "frame/csp/ContentSecurityPolicyTest.cpp", | 1209 "frame/csp/ContentSecurityPolicyTest.cpp", |
| 1210 "frame/csp/SourceListDirectiveTest.cpp", | 1210 "frame/csp/SourceListDirectiveTest.cpp", |
| 1211 "html/AutoplayExperimentTest.cpp", | |
| 1212 "html/FormDataTest.cpp", | 1211 "html/FormDataTest.cpp", |
| 1213 "html/HTMLDimensionTest.cpp", | 1212 "html/HTMLDimensionTest.cpp", |
| 1214 "html/HTMLEmbedElementTest.cpp", | 1213 "html/HTMLEmbedElementTest.cpp", |
| 1215 "html/HTMLFormControlElementTest.cpp", | 1214 "html/HTMLFormControlElementTest.cpp", |
| 1216 "html/HTMLIFrameElementPermissionsTest.cpp", | 1215 "html/HTMLIFrameElementPermissionsTest.cpp", |
| 1217 "html/HTMLIFrameElementTest.cpp", | 1216 "html/HTMLIFrameElementTest.cpp", |
| 1218 "html/HTMLImageElementTest.cpp", | 1217 "html/HTMLImageElementTest.cpp", |
| 1219 "html/HTMLInputElementTest.cpp", | 1218 "html/HTMLInputElementTest.cpp", |
| 1220 "html/HTMLLinkElementSizesAttributeTest.cpp", | 1219 "html/HTMLLinkElementSizesAttributeTest.cpp", |
| 1221 "html/HTMLMediaElementTest.cpp", | 1220 "html/HTMLMediaElementTest.cpp", |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1395 sources = [ | 1394 sources = [ |
| 1396 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1395 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1397 ] | 1396 ] |
| 1398 deps = [ | 1397 deps = [ |
| 1399 ":core", | 1398 ":core", |
| 1400 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1399 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1401 ] | 1400 ] |
| 1402 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1401 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1403 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1402 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1404 } | 1403 } |
| OLD | NEW |