| 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 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1042 "editing/EditingTestBase.h", | 1042 "editing/EditingTestBase.h", |
| 1043 "editing/EditingUtilitiesTest.cpp", | 1043 "editing/EditingUtilitiesTest.cpp", |
| 1044 "editing/EditorTest.cpp", | 1044 "editing/EditorTest.cpp", |
| 1045 "editing/EphemeralRangeTest.cpp", | 1045 "editing/EphemeralRangeTest.cpp", |
| 1046 "editing/FrameSelectionTest.cpp", | 1046 "editing/FrameSelectionTest.cpp", |
| 1047 "editing/GranularityStrategyTest.cpp", | 1047 "editing/GranularityStrategyTest.cpp", |
| 1048 "editing/InputMethodControllerTest.cpp", | 1048 "editing/InputMethodControllerTest.cpp", |
| 1049 "editing/PositionTest.cpp", | 1049 "editing/PositionTest.cpp", |
| 1050 "editing/RelocatablePositionTest.cpp", | 1050 "editing/RelocatablePositionTest.cpp", |
| 1051 "editing/SelectionAdjusterTest.cpp", | 1051 "editing/SelectionAdjusterTest.cpp", |
| 1052 "editing/SelectionTemplateTest.cpp", |
| 1052 "editing/SurroundingTextTest.cpp", | 1053 "editing/SurroundingTextTest.cpp", |
| 1053 "editing/VisiblePositionTest.cpp", | 1054 "editing/VisiblePositionTest.cpp", |
| 1054 "editing/VisibleSelectionTest.cpp", | 1055 "editing/VisibleSelectionTest.cpp", |
| 1055 "editing/VisibleUnitsTest.cpp", | 1056 "editing/VisibleUnitsTest.cpp", |
| 1056 "editing/commands/InsertListCommandTest.cpp", | 1057 "editing/commands/InsertListCommandTest.cpp", |
| 1057 "editing/commands/ReplaceSelectionCommandTest.cpp", | 1058 "editing/commands/ReplaceSelectionCommandTest.cpp", |
| 1058 "editing/iterators/BackwardsTextBufferTest.cpp", | 1059 "editing/iterators/BackwardsTextBufferTest.cpp", |
| 1059 "editing/iterators/CharacterIteratorTest.cpp", | 1060 "editing/iterators/CharacterIteratorTest.cpp", |
| 1060 "editing/iterators/ForwardsTextBufferTest.cpp", | 1061 "editing/iterators/ForwardsTextBufferTest.cpp", |
| 1061 "editing/iterators/SearchBufferTest.cpp", | 1062 "editing/iterators/SearchBufferTest.cpp", |
| (...skipping 197 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 |