| 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 1129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1140 "editing/state_machines/StateMachineUtilTest.cpp", | 1140 "editing/state_machines/StateMachineUtilTest.cpp", |
| 1141 "events/EventPathTest.cpp", | 1141 "events/EventPathTest.cpp", |
| 1142 "events/EventTargetTest.cpp", | 1142 "events/EventTargetTest.cpp", |
| 1143 "events/PointerEventFactoryTest.cpp", | 1143 "events/PointerEventFactoryTest.cpp", |
| 1144 "fetch/CachingCorrectnessTest.cpp", | 1144 "fetch/CachingCorrectnessTest.cpp", |
| 1145 "fetch/ClientHintsPreferencesTest.cpp", | 1145 "fetch/ClientHintsPreferencesTest.cpp", |
| 1146 "fetch/CrossOriginAccessControlTest.cpp", | 1146 "fetch/CrossOriginAccessControlTest.cpp", |
| 1147 "fetch/FetchUtilsTest.cpp", | 1147 "fetch/FetchUtilsTest.cpp", |
| 1148 "fetch/ImageResourceTest.cpp", | 1148 "fetch/ImageResourceTest.cpp", |
| 1149 "fetch/MemoryCacheTest.cpp", | 1149 "fetch/MemoryCacheTest.cpp", |
| 1150 "fetch/MockFetchContext.h", |
| 1150 "fetch/MockResourceClients.cpp", | 1151 "fetch/MockResourceClients.cpp", |
| 1151 "fetch/MultipartImageResourceParserTest.cpp", | 1152 "fetch/MultipartImageResourceParserTest.cpp", |
| 1152 "fetch/RawResourceTest.cpp", | 1153 "fetch/RawResourceTest.cpp", |
| 1153 "fetch/ResourceFetcherTest.cpp", | 1154 "fetch/ResourceFetcherTest.cpp", |
| 1154 "fetch/ResourceLoaderOptionsTest.cpp", | 1155 "fetch/ResourceLoaderOptionsTest.cpp", |
| 1155 "fetch/ResourceTest.cpp", | 1156 "fetch/ResourceTest.cpp", |
| 1156 "fileapi/FileListTest.cpp", | 1157 "fileapi/FileListTest.cpp", |
| 1157 "fileapi/FileTest.cpp", | 1158 "fileapi/FileTest.cpp", |
| 1158 "frame/FrameViewTest.cpp", | 1159 "frame/FrameViewTest.cpp", |
| 1159 "frame/HistoryTest.cpp", | 1160 "frame/HistoryTest.cpp", |
| (...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1349 sources = [ | 1350 sources = [ |
| 1350 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1351 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1351 ] | 1352 ] |
| 1352 deps = [ | 1353 deps = [ |
| 1353 ":core", | 1354 ":core", |
| 1354 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1355 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1355 ] | 1356 ] |
| 1356 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1357 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1357 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1358 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1358 } | 1359 } |
| OLD | NEW |