| 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 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1050 "dom/TextTest.cpp", | 1050 "dom/TextTest.cpp", |
| 1051 "dom/TreeScopeStyleSheetCollectionTest.cpp", | 1051 "dom/TreeScopeStyleSheetCollectionTest.cpp", |
| 1052 "dom/TreeScopeTest.cpp", | 1052 "dom/TreeScopeTest.cpp", |
| 1053 "dom/URLSearchParamsTest.cpp", | 1053 "dom/URLSearchParamsTest.cpp", |
| 1054 "dom/custom/CustomElementDescriptorTest.cpp", | 1054 "dom/custom/CustomElementDescriptorTest.cpp", |
| 1055 "dom/custom/CustomElementReactionQueueTest.cpp", | 1055 "dom/custom/CustomElementReactionQueueTest.cpp", |
| 1056 "dom/custom/CustomElementReactionStackTest.cpp", | 1056 "dom/custom/CustomElementReactionStackTest.cpp", |
| 1057 "dom/custom/CustomElementReactionTestHelpers.h", | 1057 "dom/custom/CustomElementReactionTestHelpers.h", |
| 1058 "dom/custom/CustomElementRegistryTest.cpp", | 1058 "dom/custom/CustomElementRegistryTest.cpp", |
| 1059 "dom/custom/CustomElementTest.cpp", | 1059 "dom/custom/CustomElementTest.cpp", |
| 1060 "dom/custom/CustomElementTestHelpers.cpp", |
| 1060 "dom/custom/CustomElementTestHelpers.h", | 1061 "dom/custom/CustomElementTestHelpers.h", |
| 1061 "dom/custom/CustomElementUpgradeSorterTest.cpp", | 1062 "dom/custom/CustomElementUpgradeSorterTest.cpp", |
| 1062 "dom/shadow/FlatTreeTraversalTest.cpp", | 1063 "dom/shadow/FlatTreeTraversalTest.cpp", |
| 1063 "editing/CompositionUnderlineTest.cpp", | 1064 "editing/CompositionUnderlineTest.cpp", |
| 1064 "editing/EditingCommandTest.cpp", | 1065 "editing/EditingCommandTest.cpp", |
| 1065 "editing/EditingStrategyTest.cpp", | 1066 "editing/EditingStrategyTest.cpp", |
| 1066 "editing/EditingStyleTest.cpp", | 1067 "editing/EditingStyleTest.cpp", |
| 1067 "editing/EditingTestBase.cpp", | 1068 "editing/EditingTestBase.cpp", |
| 1068 "editing/EditingTestBase.h", | 1069 "editing/EditingTestBase.h", |
| 1069 "editing/EditingUtilitiesTest.cpp", | 1070 "editing/EditingUtilitiesTest.cpp", |
| (...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1289 sources = [ | 1290 sources = [ |
| 1290 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1291 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1291 "html/parser/TextResourceDecoderForFuzzing.h", | 1292 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1292 ] | 1293 ] |
| 1293 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1294 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1294 deps = [ | 1295 deps = [ |
| 1295 ":core", | 1296 ":core", |
| 1296 "../platform:blink_fuzzer_test_support", | 1297 "../platform:blink_fuzzer_test_support", |
| 1297 ] | 1298 ] |
| 1298 } | 1299 } |
| OLD | NEW |