| 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 1079 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1090 "dom/custom/CustomElementTestHelpers.cpp", | 1090 "dom/custom/CustomElementTestHelpers.cpp", |
| 1091 "dom/custom/CustomElementTestHelpers.h", | 1091 "dom/custom/CustomElementTestHelpers.h", |
| 1092 "dom/custom/CustomElementUpgradeSorterTest.cpp", | 1092 "dom/custom/CustomElementUpgradeSorterTest.cpp", |
| 1093 "dom/shadow/FlatTreeTraversalTest.cpp", | 1093 "dom/shadow/FlatTreeTraversalTest.cpp", |
| 1094 "dom/shadow/SlotScopedTraversalTest.cpp", | 1094 "dom/shadow/SlotScopedTraversalTest.cpp", |
| 1095 "events/EventPathTest.cpp", | 1095 "events/EventPathTest.cpp", |
| 1096 "events/EventTargetTest.cpp", | 1096 "events/EventTargetTest.cpp", |
| 1097 "events/PointerEventFactoryTest.cpp", | 1097 "events/PointerEventFactoryTest.cpp", |
| 1098 "fetch/ClientHintsPreferencesTest.cpp", | 1098 "fetch/ClientHintsPreferencesTest.cpp", |
| 1099 "fetch/CrossOriginAccessControlTest.cpp", | 1099 "fetch/CrossOriginAccessControlTest.cpp", |
| 1100 "fetch/FetchTestingPlatformSupport.cpp", |
| 1101 "fetch/FetchTestingPlatformSupport.h", |
| 1100 "fetch/FetchUtilsTest.cpp", | 1102 "fetch/FetchUtilsTest.cpp", |
| 1101 "fetch/MemoryCacheCorrectnessTest.cpp", | 1103 "fetch/MemoryCacheCorrectnessTest.cpp", |
| 1102 "fetch/MemoryCacheTest.cpp", | 1104 "fetch/MemoryCacheTest.cpp", |
| 1103 "fetch/MockFetchContext.h", | 1105 "fetch/MockFetchContext.h", |
| 1104 "fetch/MockResource.cpp", | 1106 "fetch/MockResource.cpp", |
| 1105 "fetch/MockResource.h", | 1107 "fetch/MockResource.h", |
| 1106 "fetch/MockResourceClient.cpp", | 1108 "fetch/MockResourceClient.cpp", |
| 1107 "fetch/MockResourceClient.h", | 1109 "fetch/MockResourceClient.h", |
| 1108 "fetch/RawResourceTest.cpp", | 1110 "fetch/RawResourceTest.cpp", |
| 1109 "fetch/ResourceFetcherTest.cpp", | 1111 "fetch/ResourceFetcherTest.cpp", |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1329 sources = [ | 1331 sources = [ |
| 1330 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1332 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1331 ] | 1333 ] |
| 1332 deps = [ | 1334 deps = [ |
| 1333 ":core", | 1335 ":core", |
| 1334 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1336 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1335 ] | 1337 ] |
| 1336 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1338 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1337 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1339 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1338 } | 1340 } |
| OLD | NEW |