| 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 1189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1200 "dom/shadow/FlatTreeTraversalTest.cpp", | 1200 "dom/shadow/FlatTreeTraversalTest.cpp", |
| 1201 "dom/shadow/SlotScopedTraversalTest.cpp", | 1201 "dom/shadow/SlotScopedTraversalTest.cpp", |
| 1202 "editing/CaretDisplayItemClientTest.cpp", | 1202 "editing/CaretDisplayItemClientTest.cpp", |
| 1203 "events/EventPathTest.cpp", | 1203 "events/EventPathTest.cpp", |
| 1204 "events/EventTargetTest.cpp", | 1204 "events/EventTargetTest.cpp", |
| 1205 "events/PointerEventFactoryTest.cpp", | 1205 "events/PointerEventFactoryTest.cpp", |
| 1206 "events/TouchEventTest.cpp", | 1206 "events/TouchEventTest.cpp", |
| 1207 "fileapi/FileListTest.cpp", | 1207 "fileapi/FileListTest.cpp", |
| 1208 "fileapi/FileTest.cpp", | 1208 "fileapi/FileTest.cpp", |
| 1209 "frame/DOMTimerTest.cpp", | 1209 "frame/DOMTimerTest.cpp", |
| 1210 "frame/FeaturePolicyInFrameTest.cpp", | |
| 1211 "frame/FrameViewTest.cpp", | 1210 "frame/FrameViewTest.cpp", |
| 1212 "frame/HistoryTest.cpp", | 1211 "frame/HistoryTest.cpp", |
| 1213 "frame/ImageBitmapTest.cpp", | 1212 "frame/ImageBitmapTest.cpp", |
| 1214 "frame/LocalFrameTest.cpp", | 1213 "frame/LocalFrameTest.cpp", |
| 1215 "frame/OriginsUsingFeaturesTest.cpp", | 1214 "frame/OriginsUsingFeaturesTest.cpp", |
| 1216 "frame/PerformanceMonitorTest.cpp", | 1215 "frame/PerformanceMonitorTest.cpp", |
| 1217 "frame/RootFrameViewportTest.cpp", | 1216 "frame/RootFrameViewportTest.cpp", |
| 1218 "frame/SubresourceIntegrityTest.cpp", | 1217 "frame/SubresourceIntegrityTest.cpp", |
| 1219 "frame/UseCounterTest.cpp", | 1218 "frame/UseCounterTest.cpp", |
| 1220 "frame/csp/CSPDirectiveListTest.cpp", | 1219 "frame/csp/CSPDirectiveListTest.cpp", |
| (...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1432 sources = [ | 1431 sources = [ |
| 1433 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1432 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1434 ] | 1433 ] |
| 1435 deps = [ | 1434 deps = [ |
| 1436 ":core", | 1435 ":core", |
| 1437 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1436 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1438 ] | 1437 ] |
| 1439 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1438 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1440 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1439 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1441 } | 1440 } |
| OLD | NEW |