| 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 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1027 "dom/URLSearchParamsTest.cpp", | 1027 "dom/URLSearchParamsTest.cpp", |
| 1028 "dom/custom/CustomElementDescriptorTest.cpp", | 1028 "dom/custom/CustomElementDescriptorTest.cpp", |
| 1029 "dom/custom/CustomElementReactionQueueTest.cpp", | 1029 "dom/custom/CustomElementReactionQueueTest.cpp", |
| 1030 "dom/custom/CustomElementReactionStackTest.cpp", | 1030 "dom/custom/CustomElementReactionStackTest.cpp", |
| 1031 "dom/custom/CustomElementReactionTestHelpers.h", | 1031 "dom/custom/CustomElementReactionTestHelpers.h", |
| 1032 "dom/custom/CustomElementRegistryTest.cpp", | 1032 "dom/custom/CustomElementRegistryTest.cpp", |
| 1033 "dom/custom/CustomElementTest.cpp", | 1033 "dom/custom/CustomElementTest.cpp", |
| 1034 "dom/custom/CustomElementTestHelpers.h", | 1034 "dom/custom/CustomElementTestHelpers.h", |
| 1035 "dom/custom/CustomElementUpgradeSorterTest.cpp", | 1035 "dom/custom/CustomElementUpgradeSorterTest.cpp", |
| 1036 "dom/shadow/FlatTreeTraversalTest.cpp", | 1036 "dom/shadow/FlatTreeTraversalTest.cpp", |
| 1037 "dom/shadow/SlotScopedTraversalTest.cpp", |
| 1037 "editing/CompositionUnderlineTest.cpp", | 1038 "editing/CompositionUnderlineTest.cpp", |
| 1038 "editing/EditingCommandTest.cpp", | 1039 "editing/EditingCommandTest.cpp", |
| 1039 "editing/EditingStrategyTest.cpp", | 1040 "editing/EditingStrategyTest.cpp", |
| 1040 "editing/EditingStyleTest.cpp", | 1041 "editing/EditingStyleTest.cpp", |
| 1041 "editing/EditingTestBase.cpp", | 1042 "editing/EditingTestBase.cpp", |
| 1042 "editing/EditingTestBase.h", | 1043 "editing/EditingTestBase.h", |
| 1043 "editing/EditingUtilitiesTest.cpp", | 1044 "editing/EditingUtilitiesTest.cpp", |
| 1044 "editing/EditorTest.cpp", | 1045 "editing/EditorTest.cpp", |
| 1045 "editing/EphemeralRangeTest.cpp", | 1046 "editing/EphemeralRangeTest.cpp", |
| 1046 "editing/FrameSelectionTest.cpp", | 1047 "editing/FrameSelectionTest.cpp", |
| (...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1259 sources = [ | 1260 sources = [ |
| 1260 "html/parser/HTMLPreloadScannerFuzzer.cpp", | 1261 "html/parser/HTMLPreloadScannerFuzzer.cpp", |
| 1261 "html/parser/TextResourceDecoderForFuzzing.h", | 1262 "html/parser/TextResourceDecoderForFuzzing.h", |
| 1262 ] | 1263 ] |
| 1263 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" | 1264 seed_corpus = "//third_party/WebKit/LayoutTests/fast/parser" |
| 1264 deps = [ | 1265 deps = [ |
| 1265 ":core", | 1266 ":core", |
| 1266 "../platform:blink_fuzzer_test_support", | 1267 "../platform:blink_fuzzer_test_support", |
| 1267 ] | 1268 ] |
| 1268 } | 1269 } |
| OLD | NEW |