Chromium Code Reviews| 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 1087 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1098 "dom/custom/CustomElementTestHelpers.h", | 1098 "dom/custom/CustomElementTestHelpers.h", |
| 1099 "dom/custom/CustomElementUpgradeSorterTest.cpp", | 1099 "dom/custom/CustomElementUpgradeSorterTest.cpp", |
| 1100 "dom/shadow/FlatTreeTraversalTest.cpp", | 1100 "dom/shadow/FlatTreeTraversalTest.cpp", |
| 1101 "dom/shadow/SlotScopedTraversalTest.cpp", | 1101 "dom/shadow/SlotScopedTraversalTest.cpp", |
| 1102 "events/EventPathTest.cpp", | 1102 "events/EventPathTest.cpp", |
| 1103 "events/EventTargetTest.cpp", | 1103 "events/EventTargetTest.cpp", |
| 1104 "events/PointerEventFactoryTest.cpp", | 1104 "events/PointerEventFactoryTest.cpp", |
| 1105 "fetch/ClientHintsPreferencesTest.cpp", | 1105 "fetch/ClientHintsPreferencesTest.cpp", |
| 1106 "fetch/CrossOriginAccessControlTest.cpp", | 1106 "fetch/CrossOriginAccessControlTest.cpp", |
| 1107 "fetch/FetchUtilsTest.cpp", | 1107 "fetch/FetchUtilsTest.cpp", |
| 1108 "fetch/ImageResourceTest.cpp", | |
|
hiroshige
2016/12/16 20:44:24
I've just noticed that we shouldn't have removed t
| |
| 1109 "fetch/MemoryCacheCorrectnessTest.cpp", | 1108 "fetch/MemoryCacheCorrectnessTest.cpp", |
| 1110 "fetch/MemoryCacheCorrectnessTestHelper.cpp", | 1109 "fetch/MemoryCacheCorrectnessTestHelper.cpp", |
| 1111 "fetch/MemoryCacheCorrectnessTestHelper.h", | 1110 "fetch/MemoryCacheCorrectnessTestHelper.h", |
| 1112 "fetch/MemoryCacheTest.cpp", | 1111 "fetch/MemoryCacheTest.cpp", |
| 1113 "fetch/MockFetchContext.h", | 1112 "fetch/MockFetchContext.h", |
| 1114 "fetch/MockImageResourceClient.cpp", | |
| 1115 "fetch/MockImageResourceClient.h", | |
| 1116 "fetch/MockResource.cpp", | 1113 "fetch/MockResource.cpp", |
| 1117 "fetch/MockResource.h", | 1114 "fetch/MockResource.h", |
| 1118 "fetch/MockResourceClient.cpp", | 1115 "fetch/MockResourceClient.cpp", |
| 1119 "fetch/MockResourceClient.h", | 1116 "fetch/MockResourceClient.h", |
| 1120 "fetch/MultipartImageResourceParserTest.cpp", | |
| 1121 "fetch/RawResourceTest.cpp", | 1117 "fetch/RawResourceTest.cpp", |
| 1122 "fetch/ResourceFetcherTest.cpp", | 1118 "fetch/ResourceFetcherTest.cpp", |
| 1123 "fetch/ResourceLoaderOptionsTest.cpp", | 1119 "fetch/ResourceLoaderOptionsTest.cpp", |
| 1124 "fetch/ResourceTest.cpp", | 1120 "fetch/ResourceTest.cpp", |
| 1125 "fileapi/FileListTest.cpp", | 1121 "fileapi/FileListTest.cpp", |
| 1126 "fileapi/FileTest.cpp", | 1122 "fileapi/FileTest.cpp", |
| 1127 "frame/FeaturePolicyInFrameTest.cpp", | 1123 "frame/FeaturePolicyInFrameTest.cpp", |
| 1128 "frame/FrameViewTest.cpp", | 1124 "frame/FrameViewTest.cpp", |
| 1129 "frame/HistoryTest.cpp", | 1125 "frame/HistoryTest.cpp", |
| 1130 "frame/ImageBitmapTest.cpp", | 1126 "frame/ImageBitmapTest.cpp", |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1333 sources = [ | 1329 sources = [ |
| 1334 "frame/csp/ContentSecurityPolicyFuzzer.cpp", | 1330 "frame/csp/ContentSecurityPolicyFuzzer.cpp", |
| 1335 ] | 1331 ] |
| 1336 deps = [ | 1332 deps = [ |
| 1337 ":core", | 1333 ":core", |
| 1338 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", | 1334 "//third_party/WebKit/Source/platform:blink_fuzzer_test_support", |
| 1339 ] | 1335 ] |
| 1340 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" | 1336 dict = "//testing/libfuzzer/fuzzers/dicts/content_security_policy.dict" |
| 1341 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" | 1337 seed_corpus = "//testing/libfuzzer/fuzzers/content_security_policy_corpus" |
| 1342 } | 1338 } |
| OLD | NEW |