| 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 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 "events/PointerEventFactoryTest.cpp", | 1141 "events/PointerEventFactoryTest.cpp", |
| 1142 "fetch/ClientHintsPreferencesTest.cpp", | 1142 "fetch/ClientHintsPreferencesTest.cpp", |
| 1143 "fetch/CrossOriginAccessControlTest.cpp", | 1143 "fetch/CrossOriginAccessControlTest.cpp", |
| 1144 "fetch/FetchUtilsTest.cpp", | 1144 "fetch/FetchUtilsTest.cpp", |
| 1145 "fetch/ImageResourceTest.cpp", | 1145 "fetch/ImageResourceTest.cpp", |
| 1146 "fetch/MemoryCacheCorrectnessTest.cpp", | 1146 "fetch/MemoryCacheCorrectnessTest.cpp", |
| 1147 "fetch/MemoryCacheCorrectnessTestHelper.cpp", | 1147 "fetch/MemoryCacheCorrectnessTestHelper.cpp", |
| 1148 "fetch/MemoryCacheCorrectnessTestHelper.h", | 1148 "fetch/MemoryCacheCorrectnessTestHelper.h", |
| 1149 "fetch/MemoryCacheTest.cpp", | 1149 "fetch/MemoryCacheTest.cpp", |
| 1150 "fetch/MockFetchContext.h", | 1150 "fetch/MockFetchContext.h", |
| 1151 "fetch/MockResourceClients.cpp", | 1151 "fetch/MockImageResourceClient.cpp", |
| 1152 "fetch/MockResourceClients.h", | 1152 "fetch/MockImageResourceClient.h", |
| 1153 "fetch/MockResourceClient.cpp", |
| 1154 "fetch/MockResourceClient.h", |
| 1153 "fetch/MultipartImageResourceParserTest.cpp", | 1155 "fetch/MultipartImageResourceParserTest.cpp", |
| 1154 "fetch/RawResourceTest.cpp", | 1156 "fetch/RawResourceTest.cpp", |
| 1155 "fetch/ResourceFetcherTest.cpp", | 1157 "fetch/ResourceFetcherTest.cpp", |
| 1156 "fetch/ResourceLoaderOptionsTest.cpp", | 1158 "fetch/ResourceLoaderOptionsTest.cpp", |
| 1157 "fetch/ResourceTest.cpp", | 1159 "fetch/ResourceTest.cpp", |
| 1158 "fileapi/FileListTest.cpp", | 1160 "fileapi/FileListTest.cpp", |
| 1159 "fileapi/FileTest.cpp", | 1161 "fileapi/FileTest.cpp", |
| 1160 "frame/FeaturePolicyInFrameTest.cpp", | 1162 "frame/FeaturePolicyInFrameTest.cpp", |
| 1161 "frame/FrameViewTest.cpp", | 1163 "frame/FrameViewTest.cpp", |
| 1162 "frame/HistoryTest.cpp", | 1164 "frame/HistoryTest.cpp", |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1367 sources = [ | 1369 sources = [ |
| 1368 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1370 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1369 ] | 1371 ] |
| 1370 deps = [ | 1372 deps = [ |
| 1371 ":core", | 1373 ":core", |
| 1372 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1374 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1373 ] | 1375 ] |
| 1374 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1376 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1375 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1377 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1376 } | 1378 } |
| OLD | NEW |