| 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 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1222 "frame/RootFrameViewportTest.cpp", | 1222 "frame/RootFrameViewportTest.cpp", |
| 1223 "frame/SubresourceIntegrityTest.cpp", | 1223 "frame/SubresourceIntegrityTest.cpp", |
| 1224 "frame/UseCounterTest.cpp", | 1224 "frame/UseCounterTest.cpp", |
| 1225 "frame/csp/CSPDirectiveListTest.cpp", | 1225 "frame/csp/CSPDirectiveListTest.cpp", |
| 1226 "frame/csp/CSPSourceTest.cpp", | 1226 "frame/csp/CSPSourceTest.cpp", |
| 1227 "frame/csp/ContentSecurityPolicyTest.cpp", | 1227 "frame/csp/ContentSecurityPolicyTest.cpp", |
| 1228 "frame/csp/MediaListDirectiveTest.cpp", | 1228 "frame/csp/MediaListDirectiveTest.cpp", |
| 1229 "frame/csp/SourceListDirectiveTest.cpp", | 1229 "frame/csp/SourceListDirectiveTest.cpp", |
| 1230 "geometry/DOMMatrixTest.cpp", | 1230 "geometry/DOMMatrixTest.cpp", |
| 1231 "html/FormDataTest.cpp", | 1231 "html/FormDataTest.cpp", |
| 1232 "html/HTMLCanvasElementTest.cpp", |
| 1232 "html/HTMLDimensionTest.cpp", | 1233 "html/HTMLDimensionTest.cpp", |
| 1233 "html/HTMLEmbedElementTest.cpp", | 1234 "html/HTMLEmbedElementTest.cpp", |
| 1234 "html/HTMLFormControlElementTest.cpp", | 1235 "html/HTMLFormControlElementTest.cpp", |
| 1235 "html/HTMLIFrameElementAllowTest.cpp", | 1236 "html/HTMLIFrameElementAllowTest.cpp", |
| 1236 "html/HTMLIFrameElementTest.cpp", | 1237 "html/HTMLIFrameElementTest.cpp", |
| 1237 "html/HTMLImageElementTest.cpp", | 1238 "html/HTMLImageElementTest.cpp", |
| 1238 "html/HTMLInputElementTest.cpp", | 1239 "html/HTMLInputElementTest.cpp", |
| 1239 "html/HTMLLinkElementSizesAttributeTest.cpp", | 1240 "html/HTMLLinkElementSizesAttributeTest.cpp", |
| 1240 "html/HTMLLinkElementTest.cpp", | 1241 "html/HTMLLinkElementTest.cpp", |
| 1241 "html/HTMLMediaElementEventListenersTest.cpp", | 1242 "html/HTMLMediaElementEventListenersTest.cpp", |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1449 sources = [ | 1450 sources = [ |
| 1450 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1451 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1451 ] | 1452 ] |
| 1452 deps = [ | 1453 deps = [ |
| 1453 ":core", | 1454 ":core", |
| 1454 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1455 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1455 ] | 1456 ] |
| 1456 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1457 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1457 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1458 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1458 } | 1459 } |
| OLD | NEW |