| 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 1094 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1105 "fetch/MockResource.cpp", | 1105 "fetch/MockResource.cpp", |
| 1106 "fetch/MockResource.h", | 1106 "fetch/MockResource.h", |
| 1107 "fetch/MockResourceClient.cpp", | 1107 "fetch/MockResourceClient.cpp", |
| 1108 "fetch/MockResourceClient.h", | 1108 "fetch/MockResourceClient.h", |
| 1109 "fetch/RawResourceTest.cpp", | 1109 "fetch/RawResourceTest.cpp", |
| 1110 "fetch/ResourceFetcherTest.cpp", | 1110 "fetch/ResourceFetcherTest.cpp", |
| 1111 "fetch/ResourceLoaderOptionsTest.cpp", | 1111 "fetch/ResourceLoaderOptionsTest.cpp", |
| 1112 "fetch/ResourceTest.cpp", | 1112 "fetch/ResourceTest.cpp", |
| 1113 "fileapi/FileListTest.cpp", | 1113 "fileapi/FileListTest.cpp", |
| 1114 "fileapi/FileTest.cpp", | 1114 "fileapi/FileTest.cpp", |
| 1115 "frame/FeaturePolicyInFrameTest.cpp", | |
| 1116 "frame/FrameViewTest.cpp", | 1115 "frame/FrameViewTest.cpp", |
| 1117 "frame/HistoryTest.cpp", | 1116 "frame/HistoryTest.cpp", |
| 1118 "frame/ImageBitmapTest.cpp", | 1117 "frame/ImageBitmapTest.cpp", |
| 1119 "frame/LocalFrameTest.cpp", | 1118 "frame/LocalFrameTest.cpp", |
| 1120 "frame/OriginsUsingFeaturesTest.cpp", | 1119 "frame/OriginsUsingFeaturesTest.cpp", |
| 1121 "frame/PerformanceMonitorTest.cpp", | 1120 "frame/PerformanceMonitorTest.cpp", |
| 1122 "frame/RootFrameViewportTest.cpp", | 1121 "frame/RootFrameViewportTest.cpp", |
| 1123 "frame/SubresourceIntegrityTest.cpp", | 1122 "frame/SubresourceIntegrityTest.cpp", |
| 1124 "frame/UseCounterTest.cpp", | 1123 "frame/UseCounterTest.cpp", |
| 1125 "frame/csp/CSPDirectiveListTest.cpp", | 1124 "frame/csp/CSPDirectiveListTest.cpp", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1330 sources = [ | 1329 sources = [ |
| 1331 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1330 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1332 ] | 1331 ] |
| 1333 deps = [ | 1332 deps = [ |
| 1334 ":core", | 1333 ":core", |
| 1335 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1334 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1336 ] | 1335 ] |
| 1337 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1336 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1338 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1337 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1339 } | 1338 } |
| OLD | NEW |