| 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 1061 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1072 "dom/custom/CustomElementDescriptorTest.cpp", | 1072 "dom/custom/CustomElementDescriptorTest.cpp", |
| 1073 "dom/custom/CustomElementReactionQueueTest.cpp", | 1073 "dom/custom/CustomElementReactionQueueTest.cpp", |
| 1074 "dom/custom/CustomElementReactionStackTest.cpp", | 1074 "dom/custom/CustomElementReactionStackTest.cpp", |
| 1075 "dom/custom/CustomElementReactionTestHelpers.h", | 1075 "dom/custom/CustomElementReactionTestHelpers.h", |
| 1076 "dom/custom/CustomElementRegistryTest.cpp", | 1076 "dom/custom/CustomElementRegistryTest.cpp", |
| 1077 "dom/custom/CustomElementTest.cpp", | 1077 "dom/custom/CustomElementTest.cpp", |
| 1078 "dom/custom/CustomElementTestHelpers.cpp", | 1078 "dom/custom/CustomElementTestHelpers.cpp", |
| 1079 "dom/custom/CustomElementTestHelpers.h", | 1079 "dom/custom/CustomElementTestHelpers.h", |
| 1080 "dom/custom/CustomElementUpgradeSorterTest.cpp", | 1080 "dom/custom/CustomElementUpgradeSorterTest.cpp", |
| 1081 "dom/shadow/FlatTreeTraversalTest.cpp", | 1081 "dom/shadow/FlatTreeTraversalTest.cpp", |
| 1082 "dom/shadow/SlotScopedTraversalTest.cpp", |
| 1082 "editing/CompositionUnderlineTest.cpp", | 1083 "editing/CompositionUnderlineTest.cpp", |
| 1083 "editing/EditingCommandTest.cpp", | 1084 "editing/EditingCommandTest.cpp", |
| 1084 "editing/EditingStrategyTest.cpp", | 1085 "editing/EditingStrategyTest.cpp", |
| 1085 "editing/EditingStyleTest.cpp", | 1086 "editing/EditingStyleTest.cpp", |
| 1086 "editing/EditingTestBase.cpp", | 1087 "editing/EditingTestBase.cpp", |
| 1087 "editing/EditingTestBase.h", | 1088 "editing/EditingTestBase.h", |
| 1088 "editing/EditingUtilitiesTest.cpp", | 1089 "editing/EditingUtilitiesTest.cpp", |
| 1089 "editing/EditorTest.cpp", | 1090 "editing/EditorTest.cpp", |
| 1090 "editing/EphemeralRangeTest.cpp", | 1091 "editing/EphemeralRangeTest.cpp", |
| 1091 "editing/FrameSelectionTest.cpp", | 1092 "editing/FrameSelectionTest.cpp", |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1313 sources = [ | 1314 sources = [ |
| 1314 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1315 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1315 "html/parser/TextResourceDecoderForFuzzing.h", | 1316 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1316 ] | 1317 ] |
| 1317 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1318 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1318 deps = [ | 1319 deps = [ |
| 1319 ":core", | 1320 ":core", |
| 1320 "../platform:blink_fuzzer_test_support", | 1321 "../platform:blink_fuzzer_test_support", |
| 1321 ] | 1322 ] |
| 1322 } | 1323 } |
| OLD | NEW |